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

5 lines
179 B
Python
Raw Permalink Normal View History

2019-07-20 21:01:50 +08:00
tuple_list = ('Iraq', 'Jordon', 'Malaysia', 'Turkey', 'Japan')
print(tuple_list)
choose = str(input('Enter the name of country : ')).capitalize()
print(tuple_list.index(choose))