python-crash-course/pcc-solutions/chapter_02/hello_world_variables_2.py

5 lines
107 B
Python

message = "Hello Python world!"
print(message)
message = "Hello Python Crash Course world!"
print(message)