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")
Відповідь:
Пояснення:
if price > 100:
else price < 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")
Відповідь:
Пояснення:
price = 50
if price > 100:
print("price is greater than 100")
elif price == 100:
print("price is 100")
else price < 100:
print("price is less than 100")