Curso_Intensivo_de_PYTHON/chapter_02/hello_world.py
2023-06-02 17:22:53 +02:00

5 lines
108 B
Python

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