Files
playground/say_hello.py
2025-09-13 01:44:27 +01:00

9 lines
215 B
Python

# Add your name to this list!
names = ["Livia", "James"]
# When you run this code (python3 say_hello.py)
# It will say hello to everyone who has added their name!
for name in names:
print("Hello", name + "!")