Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Discount Calculator | Python Ternary Operator
course content

Course Content

Conditional Statements in Python

Challenge: Discount CalculatorChallenge: 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.

Everything was clear?

Section 4. Chapter 2
toggle bottom row
course content

Course Content

Conditional Statements in Python

Challenge: Discount CalculatorChallenge: 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.

Everything was clear?

Section 4. Chapter 2
toggle bottom row
some-alt