python-by-example-150-chall.../challenges69-79/challenge-069.py
2019-07-20 16:01:50 +03:00

5 lines
179 B
Python

tuple_list = ('Iraq', 'Jordon', 'Malaysia', 'Turkey', 'Japan')
print(tuple_list)
choose = str(input('Enter the name of country : ')).capitalize()
print(tuple_list.index(choose))