Add the initial script

This commit is contained in:
James Silvester
2025-09-13 01:44:27 +01:00
parent 8265bef337
commit 491d6fd4fb

8
say_hello.py Normal file
View File

@@ -0,0 +1,8 @@
# 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 + "!")