python-by-example-150-chall.../challenges69-79/challenge-071.py

5 lines
147 B
Python
Raw Permalink Normal View History

2019-07-20 21:01:50 +08:00
sport_list = ['football', 'crossfit']
print(sport_list)
sport_list.append(str(input('Enter your faviorate sport to add it : ')))
print(sport_list)