Відповідь:price = 50
if price > 100:
print("price is greater than 100")
elif price == 100:
print("price is 100")
else:
print("price is less than 100")
Пояснення: вроде так, может что-то пропустил
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:price = 50
if price > 100:
print("price is greater than 100")
elif price == 100:
print("price is 100")
else:
print("price is less than 100")
Пояснення: вроде так, может что-то пропустил