Advertisement
Guest User

"shit".py

a guest
Feb 6th, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. retail = float(input("Enter the retail value: "))
  2. markup = float(input("enter the markup percentage (e.g. 0.9): "))
  3. cost = retail / (1 + markup)
  4. print("The cost of the item is "+str(cost))
  5. print("\nEnd of Report")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement