import random
def main():
capitals = {
'France' : 'Paris', 'Germany' : 'Berlin',
'UK' : 'London', 'Greece' : 'Athens',
'Turkey' : 'Ankara', 'Norway' : 'Oslo',
'Russia' : 'Moscow', 'Ukraine' : 'Kyev'
}
test(capitals)
def test(capitals):
again = 'да'
count = 0
while again.lower() == 'да':
country = random.choice(list(capitals))
print(country)
сity = input('Введите столицу этой страны: ')
if 'city' == capitals[country]:
count += 1
again = input('Хотите продолжить? ')
print(f'Вы отгадали {count} столиц!')
main()