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

17 lines
283 B
Python

item = int(input("Enter number of items bought:"))
cost = item*10
if item ==1:
cost = 10.0
elif item <=3:
cost = cost -(cost*0.05)
elif item <6:
cost = cost -(cost*0.1)
else:
cost = cost -(cost*0.2)
print ("number of items bought:",item)
print ("cost:",cost)