Write a function number_of_pennies() that returns the total number of pennies given a number of dollars and (optionally) a number of pennies. Ex: If you have $5.06 then the input is 5 6, and if you have $4.00 then the input is 4. Sample output with inputs: 56 4 506 400 Learn how our autograder works 494402-3535084.qx3zqy7 1 Hef number_of_pennies (dollars, pennies): if dollars >= 1: 3456 return dollars * 100 elif pennies in range(100): return pennies 1 7 print (number_of_pennies (int (input()), int(input()))) 8 print (number_of_pennies (int(input()))) Run X Not all tests passed X Test aborted # Both dollars and pennies # Dollars only DID passed passed
Write a function number_of_pennies() that returns the total number of pennies given a number of dollars and (optionally) a number of pennies. Ex: If you have $5.06 then the input is 5 6, and if you have $4.00 then the input is 4. Sample output with inputs: 56 4 506 400 Learn how our autograder works 494402-3535084.qx3zqy7 1 Hef number_of_pennies (dollars, pennies): if dollars >= 1: 3456 return dollars * 100 elif pennies in range(100): return pennies 1 7 print (number_of_pennies (int (input()), int(input()))) 8 print (number_of_pennies (int(input()))) Run X Not all tests passed X Test aborted # Both dollars and pennies # Dollars only DID passed passed
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
I am not understianding where I am messing up in this code, any advice?

Transcribed Image Text:Calendar X
= zyBooks
76°F
Sunny
VHL Cent X
code to X
https://learn.zybooks.com/zybook/PIEDMONTCSC11301LutzFall2023/chapter/6/section/13
how to c X Qbartleby X Qbartleby X
My library > CSCI 1301: Programming Principles I home >
6.13: Keyword arguments and default parameter values
506
400
Sample output with inputs: 5 64
Learn how our autograder works
494402.3535084.qx3zqy7
1 def number_of_pennies (dollars, pennies):
2
3
4
5
if dollars >= 1:
Write a function number_of_pennies() that returns the total number of pennies given a number of dollars and (optionally) a number
of pennies. Ex: If you have $5.06 then the input is 5 6, and if you have $4.00 then the input is 4.
return dollars * 100
elif pennies in range(100):
return pennies * 1
6
7 print (number_of_pennies (int(input()), int(input())))
8 print (number_of_pennies(int (input())))
Run X Not all tests passed
X Test aborted
bartleby X
Q Search
Answere X
Q
# Both dollars and pennies
# Dollars only
6.13.2: R X
zy Section X
zyBooks catalog
1 test
passed
zybooks X +
? Help/FAQ
All tests
passed
{}
Edward Wilson ▾
4:11 PM
9/28/2023
X
A
+
☐
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images

Knowledge Booster
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.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education