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.0 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.

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...
icon
Related questions
Question

Python code. It is just one question. I will post example as well. 

Need to use Variables and expression, strings, conditional-statements, loops. 

Thank you

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.
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.
--Task 2--------
Soda Vending Machine
Current amount $0.00 out of $1.00
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($e.25)
4. Dime
5. Nickle ($0.05)
Selection [1-5]? 3
Current amount $0.25 out of $1.00
($0.10)
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($e.25)
4. Dime
5. Nickle ($0.05)
Selection [1-5]? 9
Invalid selection!
($0.10)
If input is not 1-5, then print "Invalid
selection!." Note that the amount will
not be updated.
Current amount $0.25 out of $1.00
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($e.25)
4. Dime
5. Nickle ($0.05)
Selection [1-5]? 3
Current amount $0.50 out of $1.00
($0.10)
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickle ($0.05)
Selection [1-5]? 3
Current amount $0.75 out of $1.00
($0.10)
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($e.25)
4. Dime
($0.10)
5. Nickle ($0.05)
Selection [1-5]? 3
Total amount provided: $1.00
Thank you for your purchase.
When exactly $1.00 is provided, you do not
need to output "Please take your change" as
shown in the previous example above.
Transcribed Image Text:--Task 2-------- Soda Vending Machine Current amount $0.00 out of $1.00 Insert Coin 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($e.25) 4. Dime 5. Nickle ($0.05) Selection [1-5]? 3 Current amount $0.25 out of $1.00 ($0.10) Insert Coin 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($e.25) 4. Dime 5. Nickle ($0.05) Selection [1-5]? 9 Invalid selection! ($0.10) If input is not 1-5, then print "Invalid selection!." Note that the amount will not be updated. Current amount $0.25 out of $1.00 Insert Coin 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($e.25) 4. Dime 5. Nickle ($0.05) Selection [1-5]? 3 Current amount $0.50 out of $1.00 ($0.10) Insert Coin 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($0.25) 4. Dime 5. Nickle ($0.05) Selection [1-5]? 3 Current amount $0.75 out of $1.00 ($0.10) Insert Coin 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($e.25) 4. Dime ($0.10) 5. Nickle ($0.05) Selection [1-5]? 3 Total amount provided: $1.00 Thank you for your purchase. When exactly $1.00 is provided, you do not need to output "Please take your change" as shown in the previous example above.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
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…
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)
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
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY