# The sales tax of an item # Alyssa Bennage # 3-6-2018 tax=float(raw_input("What is the tax of the item?")) print ("The tax of the item is " + str (tax) + " tax") print ("") amount=float(raw_input("What is the the amount of tax?")) print ("The amount of tax is? " + str (amount) + " amount") print ("") total=float(raw_input("What is the total tax?")) print ("The total tax is? " + str (total) + " total") print ("")
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question