python-by-example-150-chall.../challenges69-79/challenge-071.py
2019-07-20 16:01:50 +03:00

5 lines
147 B
Python

sport_list = ['football', 'crossfit']
print(sport_list)
sport_list.append(str(input('Enter your faviorate sport to add it : ')))
print(sport_list)