toppings = "\nВведите дополнение для пиццы"
toppings += "\nнажмите 'quit' для выхода "
message = ""
while message != 'quit':
message = input(toppings)
if message != 'quit':
print(f"{message} включено в заказ")
# Задание 7.5
years = "Введите свой возраст"
message = ""
while message != 'quit':
message = int(input(years))
if message < 3:
print("Для вас билет бесплатный")
elif message <= 12:
print("Для тебя это стоит 10$")
elif message > 12:
print("Твоя стоимость 15$")
toppings = "\nВведите дополнение для пиццы"
toppings += "\nнажмите 'quit' для выхода "
message = ""
finish = False
while message != 'quit' and not finish:
message = input(toppings)
if message != 'quit':
print(f"{message} включено в заказ")
finish = True
# Задание 7.5
finish = False
years = "Введите свой возраст"
message = ""
while message != 'quit' and not finish:
message = int(input(years))
if message < 3:
print("Для вас билет бесплатный")
elif message <= 12:
print("Для тебя это стоит 10$")
elif message > 12:
print("Твоя стоимость 15$")
finish = True
mess = ("\nВведите возраст: ")
times = 0
active = True
while active:
age = input(mess)
times += 1
if times == 10:
active = False
print("Попытки закончились")
print("Попыток " + str(times))
if age.lower() == 'выход':
break
elif int(age) < 3:
print("\nВаш возраст - " + age + "\nСтоимость билета - 0")
elif int(age) <= 12:
print("\nВаш возраст - " + age + "\nСтоимость билета - 10")
elif int(age) > 12:
print("\nВаш возраст - " + age + "\nСтоимость билета - 15")
toppings = "\nВведите дополнение для пиццы"
toppings += "\nнажмите 'quit' для выхода "
message = ""
active = True
while active:
message = input(toppings)
if message == 'quit':
break
if message != 'quit':
print(f"{message} включено в заказ")
top = True
while top:
x = input('Введите ваш возраст: ')
if x == 'quit':
break
elif int(x) <= 3:
print('Билет для Вас бесплатен')
elif int(x) > 3 and int(x) <= 12:
print('Билет для Вас будет стоить $10')
elif int(x) > 12:
print('Цена вашего билета - $15')