Skip to content

Commit f967189

Browse files
committed
Day 1 of #100DaysOfCode
1 parent 00e5a2c commit f967189

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

100Days_of_Python/Day1/main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,9 @@
1414
name = input("what is your name?")
1515
print("Hello " + name)
1616

17+
# Project : Read different values from the user and merge it in to a string to create as a band
18+
print("welcome to Band!")
19+
city = input("what is the city are you from?")
20+
pet = input("what pet do you have?")
21+
print("Hello am from "+ city + " and my pet is" + pet)
1722

0 commit comments

Comments
 (0)