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

8 lines
222 B
Python
Raw Permalink Normal View History

2019-07-20 21:01:50 +08:00
foods_list = {}
for i in range(4):
j = i + 1
foods_list[j] = str(input('Enter favourite food : '))
print(foods_list)
del foods_list[int(input('Enter food number to delete it : '))]
print(sorted(foods_list.keys()))