1
0
Files
pythonCrashCourse/chap2/hello_world.py

12 lines
285 B
Python
Raw Permalink Normal View History

2025-05-09 10:12:44 -04:00
message = "Hello Python World!"
print(message)
mesage = "Hello Python Crash Course World!"
print(mesage)
# Try It Yourself pg. 19
message_alert1 = "This is a test of the emergency broadcast system."
print(message_alert1)
message_alert1 = "This is only a test."
print(message_alert1)