Course Content
Conditional Statements in Python
Conditional Statements in Python
Challenge: Discount Calculator
To tackle this task, you should have a good understanding of functions. It's recommended to review the Functions topic beforehand.
Task
Now, let's put the discount calculator to work. This function will determine the final payment amount based on the total receipt sum. The function is called total_discount
and takes the total receipt amount as basket_value
. If the basket_value
is equal to or greater than $50, a 10% discount is applied; if it's less than $50, a 3% discount is applied.
Thanks for your feedback!
Challenge: Discount Calculator
To tackle this task, you should have a good understanding of functions. It's recommended to review the Functions topic beforehand.
Task
Now, let's put the discount calculator to work. This function will determine the final payment amount based on the total receipt sum. The function is called total_discount
and takes the total receipt amount as basket_value
. If the basket_value
is equal to or greater than $50, a 10% discount is applied; if it's less than $50, a 3% discount is applied.
Thanks for your feedback!
Challenge: Discount Calculator
To tackle this task, you should have a good understanding of functions. It's recommended to review the Functions topic beforehand.
Task
Now, let's put the discount calculator to work. This function will determine the final payment amount based on the total receipt sum. The function is called total_discount
and takes the total receipt amount as basket_value
. If the basket_value
is equal to or greater than $50, a 10% discount is applied; if it's less than $50, a 3% discount is applied.
Thanks for your feedback!
To tackle this task, you should have a good understanding of functions. It's recommended to review the Functions topic beforehand.
Task
Now, let's put the discount calculator to work. This function will determine the final payment amount based on the total receipt sum. The function is called total_discount
and takes the total receipt amount as basket_value
. If the basket_value
is equal to or greater than $50, a 10% discount is applied; if it's less than $50, a 3% discount is applied.