city = input('>> ')
if city.lower() == 'москва':
print('\nСтолица России')
if city.lower() == 'воронеж':
print('\nТекст')
if city.lower() == 'новосибирск':
print('\nТекст_2')
Объяснение:
Python 3.7
city = input('>> ')
if city.lower() == 'москва':
print('\nСтолица России')
if city.lower() == 'воронеж':
print('\nТекст')
if city.lower() == 'новосибирск':
print('\nТекст_2')
Объяснение:
Python 3.7