This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

14 lines
365 B
Python

items = int(input("Enter number of items bought:"))
print("Number of items bought:", items)
price = 10.0
if items == 0:
print("Cost: 0.0")
elif items == 1:
print("Cost:", price)
elif items == 2 or items == 3:
print("Cost:", price*items*0.95)
elif items == 4 or items == 5:
print("Cost:", price*items*0.90)
else:
print("Cost:", price*items*0.80)