From 491d6fd4fb6806e7da1df536d10615da0da6c2b8 Mon Sep 17 00:00:00 2001 From: James Silvester Date: Sat, 13 Sep 2025 01:44:27 +0100 Subject: [PATCH] Add the initial script --- say_hello.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 say_hello.py diff --git a/say_hello.py b/say_hello.py new file mode 100644 index 0000000..e6ba3c5 --- /dev/null +++ b/say_hello.py @@ -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 + "!") +