From 87d567b8cb6628ffc2ae36c5537bc3ca80fb5fdd Mon Sep 17 00:00:00 2001 From: Tanguy Deleplanque Date: Tue, 10 Jun 2025 12:14:20 +0200 Subject: [PATCH] day 1 --- 001/task.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 001/task.py diff --git a/001/task.py b/001/task.py new file mode 100644 index 0000000..9dffc56 --- /dev/null +++ b/001/task.py @@ -0,0 +1,5 @@ +print("Welcome ot the Band Name Generator.") +city = input("What's the name of the city you grew up in?\n") +pet = input("What's your pet name?\n") + +print(f'Your pet name could be {city} {pet}')