Advertisement
PlainclothesCop

CodeHS Answers-3.6.7 Sporting Goods Shop

Aug 25th, 2021
3,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. # Enter your code here
  2. COST_OF_FRISBEE = 15
  3. y=int(input("How many frisbees would you like to purchase?"))
  4.  
  5. y = y*15
  6.  
  7. print("Your total is $" +str(y))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement