Respuesta :

Using the computational knowledge in python, you must write a code that calculates a person's account, with the objects and values ​​informed

Writing the code in python we have

def validatedInput(str):

num=input(str)

x=0

try:

x=int(num)

except ValueError:

print('it should be integer only ! Try Again!')

validate(str)

return x

customer_id=input('Enter customer ID: ')

tax=0.095

print('Invoice for Customer ID: '+customer_id)

subtotal=milk_chocolate*8.50

sale_tax=tax*subtotal

See more about python at brainly.com/question/18502436

#SPJ1

Ver imagen lhmarianateixeira