This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

17 lines
481 B
Python

def yourCityPopulation(file):
name = input('Enter the city name:')
try:
with open(file, 'r') as f:
data = {}
content = f.readlines()
for i in range(len(content)):
city = content[i].split(':')
city = [x.replace('\n', "") for x in city]
data[city[0]] = city[1]
print(name+' '+data[name])
except KeyError:
print('City not exists')
yourCityPopulation('City.txt')