Files
python_bootcamp/001/task.py
Tanguy Deleplanque 87d567b8cb day 1
2025-06-10 12:14:20 +02:00

6 lines
193 B
Python

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}')