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 + "!") +