Function task2() emulates purchasing a soda from a vending machine. A soda costs $1.00. The user can input any five Canadian coins ($2, $1, $0.25, $0.10, and $0.05). The user continues to select coins until $1.00 is reached. Any amount over $1.00 should be returned. Your function should work as follows: (1) Print welcome message and set current amount to 0. (2) Print out the current amount (see below). (3) Ask the user to input a selection between 1-5, where each selection corresponds to a Canadian coin as follows: 1-Toonie ($2); 2 – Loonie ($1); 3 – Quarter ($0.25); 4 – Dime ($0.10); 5 – Nickel ($0.05)" (5) Check the user's input to see what amount they entered. If they select a number that is not 1-5, print out "Invalid Selection." If a valid number is entered, add the corresponding amount to the current amount. (6) If the current amount is less than $1.00, go back to (2) (7) If the current amount is $1.00 or more, stop asking for input. Print out the total amount entered. (8) Print out a thank you message for purchasing a soda. (9) If the final amount is over $1.00, print "take your change $X.XX" where X.XX is the amount over $1.00. Example of task running (user input in red).
Function task2() emulates purchasing a soda from a vending machine. A soda costs $1.00. The user can input any five Canadian coins ($2, $1, $0.25, $0.10, and $0.05). The user continues to select coins until $1.00 is reached. Any amount over $1.00 should be returned. Your function should work as follows: (1) Print welcome message and set current amount to 0. (2) Print out the current amount (see below). (3) Ask the user to input a selection between 1-5, where each selection corresponds to a Canadian coin as follows: 1-Toonie ($2); 2 – Loonie ($1); 3 – Quarter ($0.25); 4 – Dime ($0.10); 5 – Nickel ($0.05)" (5) Check the user's input to see what amount they entered. If they select a number that is not 1-5, print out "Invalid Selection." If a valid number is entered, add the corresponding amount to the current amount. (6) If the current amount is less than $1.00, go back to (2) (7) If the current amount is $1.00 or more, stop asking for input. Print out the total amount entered. (8) Print out a thank you message for purchasing a soda. (9) If the final amount is over $1.00, print "take your change $X.XX" where X.XX is the amount over $1.00. Example of task running (user input in red).
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
Code must be in Python
![Function task2() emulates purchasing a soda from a vending machine. A soda costs $1.00. The user can
input any five Canadian coins ($2, $1, $0.25, $0.10, and $0.05). The user continues to select coins until $1.00
is reached. Any amount over $1.00 should be returned. Your function should work as follows:
(1) Print welcome message and set current amount to 0.
(2) Print out the current amount (see below).
(3) Ask the user to input a selection between 1-5, where each selection corresponds to a Canadian coin as
follows: 1-Toonie ($2); 2 – Loonie ($1); 3 – Quarter ($0.25); 4 – Dime ($0.10); 5 – Nickel ($0.05)"
(5) Check the user's input to see what amount they entered. If they select a number that is not 1-5, print out
"Invalid Selection." If a valid number is entered, add the corresponding amount to the current amount.
(6) If the current amount is less than $1.00, go back to (2)
(7) If the current amount is $1.00 or more, stop asking for input. Print out the total amount entered.
(8) Print out a thank you message for purchasing a soda.
(9) If the final amount is over $1.00, print "take your change $X.XX" where X.XX is the amount over $1.00.
Example of task running (user input in red).
--Task 2-
Soda Vending Machine
Current amount $0.00 out of $1.00
Print welcome and current amount.
All amounts should be shown with two
Insert Coin
decimal places.
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 3
Current amount $0.25 out of $1.00
Print coin selection menu as shown. Input
($0.10)
the user's selection.
Insert Coin
Add the selected amount to the current
amount. If this is still less than $1.00, keep
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 4
Current amount $0.35 out of $1.00
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 1
Total amount provided: $2.35
Thank you for your purchase.
Please take your change $1.35
asking for more inputs. Each time, show
the updated amount.
($0.10)
When the current amount is $1.00 or more, stop
asking for input. Print out the total amount provided.
Print a thank you message as shown. Any amount
($0.10)
over $1.00 should be returned as change. Print a
message to the user to take their change as shown.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F842ddfb5-3cba-4856-a7b3-78a95dca4dd5%2F5fafa78d-0fe0-431f-b1c0-06f8deca0e44%2Fdz9nwz3_processed.png&w=3840&q=75)
Transcribed Image Text:Function task2() emulates purchasing a soda from a vending machine. A soda costs $1.00. The user can
input any five Canadian coins ($2, $1, $0.25, $0.10, and $0.05). The user continues to select coins until $1.00
is reached. Any amount over $1.00 should be returned. Your function should work as follows:
(1) Print welcome message and set current amount to 0.
(2) Print out the current amount (see below).
(3) Ask the user to input a selection between 1-5, where each selection corresponds to a Canadian coin as
follows: 1-Toonie ($2); 2 – Loonie ($1); 3 – Quarter ($0.25); 4 – Dime ($0.10); 5 – Nickel ($0.05)"
(5) Check the user's input to see what amount they entered. If they select a number that is not 1-5, print out
"Invalid Selection." If a valid number is entered, add the corresponding amount to the current amount.
(6) If the current amount is less than $1.00, go back to (2)
(7) If the current amount is $1.00 or more, stop asking for input. Print out the total amount entered.
(8) Print out a thank you message for purchasing a soda.
(9) If the final amount is over $1.00, print "take your change $X.XX" where X.XX is the amount over $1.00.
Example of task running (user input in red).
--Task 2-
Soda Vending Machine
Current amount $0.00 out of $1.00
Print welcome and current amount.
All amounts should be shown with two
Insert Coin
decimal places.
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 3
Current amount $0.25 out of $1.00
Print coin selection menu as shown. Input
($0.10)
the user's selection.
Insert Coin
Add the selected amount to the current
amount. If this is still less than $1.00, keep
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 4
Current amount $0.35 out of $1.00
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 1
Total amount provided: $2.35
Thank you for your purchase.
Please take your change $1.35
asking for more inputs. Each time, show
the updated amount.
($0.10)
When the current amount is $1.00 or more, stop
asking for input. Print out the total amount provided.
Print a thank you message as shown. Any amount
($0.10)
over $1.00 should be returned as change. Print a
message to the user to take their change as shown.
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
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 3 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Recommended textbooks for you
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY