Curso_Intensivo_de_PYTHON/chapter_02/hello_world.py

6 lines
108 B
Python
Raw Normal View History

2023-06-02 17:22:53 +02:00
message = "Hello Python world!"
print(message)
message = "Hello Python Crash Course world!"
print(message)