Ответ:
import pause
from colorama import Back, Fore, Style
languge = input('Пожайлуста выбери язык.Plese coose languge.Оберіть мову будьласка(ru, ukr, en): ')
if languge == 'ru':
ask = input('Привет я программа которая измеряет соотношение веса и роста.Ну что готов(y / n): ')
if ask == 'n':
print("Жаль.Пока")
if ask == 'y':
rost = float(input( 'Введи свой рост в метрах(1.7): '))
ves = float(input('Введи вес в килограммах: '))
soothohenie = float( ves / (rost ** 2))
if soothohenie < 18.5:
print('Парень(девушка) да ты тощак едь к бабушке она все поправит ¬_¬')
elif (soothohenie >= 18.5 and soothohenie
print('Все ок ^_^')
elif (soothohenie >= 25.0 and soothohenie
print('Беги в зал пока не позно а иначе светит Ожирение 1 степени ╰(‵□′)╯')
elif (soothohenie >=30.0 and soothohenie
print( 'Одна булочка на ночь это ничего говорил он(-а) вот ты теперь Жирдяй 1 степени (っ °Д °;)っ')
elif (soothohenie >= 35.0 and soothohenie
print( '*Фейс палм* ну что доигрался жирдяй 2 степени ⊙﹏⊙∥')
elif soothohenie > 40:
print( 'Тебе пульт подать он же на твоем 2 метровом пузе (。・∀・)ノ゙')
if languge == 'ukr':
ask = input('Привіт я програма яка вимірює співвідношення ваги і роста.На що готовий(y / n): ')
if ask == 'n':
print( "Жаль.Бувай")
if ask == 'y':
rost = float(input( 'Введи свій зріст в метрах(1,.7): '))
ves = float(input('Введи вагу в кілограмах: '))
soothohenie = float( ves / (rost ** 2))
if soothohenie < 18.5:
print('Хлопець (дівчина) та ти тощак їдь до бабусі вона все виправить ¬_¬')
elif (soothohenie >= 18.5 and soothohenie
print( 'Все ок ^_^')
elif (soothohenie >= 25.0 and soothohenie
print( 'Біжи в зал поки не пізно а інакше світить Ожиріння 1 ступеня ╰(‵□′)╯')
elif (soothohenie >=30.0 and soothohenie
print('Одна булочка на ніч це нічого говорив він (-а) ось ти тепер жирдяй 1 ступеня (っ °Д °;)っ')
elif (soothohenie >= 35.0 and soothohenie
print( '* Фейс палм * ну що догрався жирдяй 2 ступеня ⊙﹏⊙∥')
elif soothohenie > 40:
print( 'Тобі пульт подати він же на твоєму 2 метровому пузі (。・∀・)ノ゙')
if languge == 'en':
ask = input('Hi, I’m a program that measures the ratio of weight to height. Well, what is ready(y / n): ')
if ask == 'n':
print( "Sorry, bye")
if ask == 'y':
rost = float(input( 'Enter your height in meters(1.7): '))
ves = float(input('Enter the weight in kilograms: '))
soothohenie = float( ves / (rost ** 2))
if soothohenie < 18.5:
print( 'Boy (girl), yes you are a fasting man going to grandmother, she will correct everything ¬_¬')
elif (soothohenie >= 18.5 and soothohenie
print( 'All OK ^_^')
elif (soothohenie >= 25.0 and soothohenie
print( 'Run into the hall until it’s a shame, otherwise Obesity of the 1st degree ╰(‵□′)╯')
elif (soothohenie >=30.0 and soothohenie
print( 'One bun for the night, it said nothing (s) here you are now Fatty 1 degree (っ °Д °;)っ')
elif (soothohenie >= 35.0 and soothohenie
print( '* Face palm * well, that got fat 2 degrees ⊙﹏⊙∥')
elif soothohenie > 40:
print( 'Give you the remote control, it’s on your 2 meter belly (。・∀・)ノ゙')
pause.seconds(30)
Объяснение: