python-by-example-150-chall.../challenges69-79/challenge-078.py
2019-07-22 10:49:24 +03:00

9 lines
322 B
Python

tv_program = ['GOT', 'Prison Break', 'Supernatural', 'Chernobyl ']
for i in tv_program:
print(i)
ask_name = str(input('Enter a name of show you want to add to list : '))
ask_position = int(input('Enter position of entered show in list : '))
tv_program.insert(ask_position, ask_name)
for i in tv_program:
print(i)