5 lines
147 B
Python
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)
|