print ("*** Application for Total Sale Amount Formula ***")
print ("\n")
SP = float(input("Please enter the Selling Price value:"))
ST = float(input("Please enter the Sale Tax value:"))
#Total sale amount = selling price + sales tax.
TSA = SP + ST
print ("The total sale amount value is:" , (TSA))
===============================================================
https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.