Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write Code in Python class SodaMachine: ''' Creates instances of the class SodaMachine. Takes a string and an integer >>> m = SodaMachine('Coke', 10) >>>

Write Code in Python

image text in transcribed

class SodaMachine:

'''

Creates instances of the class SodaMachine. Takes a string and an

integer

>>> m = SodaMachine('Coke', 10)

>>> m.purchase()

'Product out of stock'

>>> m.restock(2)

'Current soda stock: 2'

>>> m.purchase()

'Please deposit $10'

>>> m.deposit(7)

'Balance: $7'

>>> m.purchase()

'Please deposit $3'

>>> m.deposit(5)

'Balance: $12'

>>> m.purchase()

'Coke dispensed, take your $2'

>>> m.deposit(10)

'Balance: $10'

>>> m.purchase()

'Coke dispensed'

>>> m.deposit(15)

'Sorry, out of stock. Take your $15 back'

'''

def __init__(self, product, price):

#-- start code here ---

#-- ends here ---

def purchase(self):

#-- start code here ---

#-- ends here ---

def deposit(self, amount):

#-- start code here ---

#-- ends here ---

def restock(self, amount):

#-- start code here ---

#-- ends here ---

[5 pts] Write the class SodaMachine that will represent a typical soda vending machine (product name, price). An instance of SodaMachine has access to three methods, purchase, deposit and restock that will describe its interaction with the user returning strings. Tip: use the string format method >>m-SodaMachine 'Coke, 10) >>>m.purchase () Product out of stock' >>> m.restock (2) Current soda stock: 2' >>>m.purchase () Please deposit $10" >>> m.deposit(7) Balance: $7 >>>m.purchase () Please deposit $3' >>> m.deposit (5) Balance: $12' >>>m.purchase () 'Coke dispensed, take your $2' >>> m.deposit (10) Balance: $10' >>>m.purchase () 'Coke dispensed' >>> m.deposit (15) Sorry, out of stock. Take your $15 back' >>> x= SodaMachine ('Dr. Pepper', 8) >>>x.restock (1) Current soda stock: 1' >>>x.deposit (8) Balance: $8' >>>x.purchase () Dr. Pepper dispensed' Quotes mean method returned a string, no need to append them in your code Return output with the sentences provided. Solution is not case or space sensitive, which means Balance: $10 is the same as balance:S10, but is not the same as Balance- $10 e

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Basics Computer EngineeringInformation Warehouse Basics From Science

Authors: Odiljon Jakbarov ,Anvarkhan Majidov

1st Edition

620675183X, 978-6206751830

More Books

Students also viewed these Databases questions