What is the output to this Python code

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter6: Arrays
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

What is the output to this Python code?

 

def cost(price, num):
cost = total(price, num) * discount(num)
def total (price, num):
total = price * num
def discount(num):
if num < 7:
discount = 0.95
else:
discount = 0.7
num = 7
price = 3
c = cost(price, num)
print("The final cost is: ", c)
%3D
Transcribed Image Text:def cost(price, num): cost = total(price, num) * discount(num) def total (price, num): total = price * num def discount(num): if num < 7: discount = 0.95 else: discount = 0.7 num = 7 price = 3 c = cost(price, num) print("The final cost is: ", c) %3D
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Top down approach design
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning