Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 627 Bytes

File metadata and controls

5 lines (4 loc) · 627 Bytes

Python-Assignment-Week-3

Python assignment for week 3

  1. Create a function named calculate_discount(price, discount_percent) that calculates the final price after applying a discount. The function should take the original price (price) and the discount percentage (discount_percent) as parameters. If the discount is 20% or higher, apply the discount; otherwise, return the original price.
  2. Using the calculate_discount function, prompt the user to enter the original price of an item and the discount percentage. Print the final price after applying the discount, or if no discount was applied, print the original price.