Last active
July 10, 2018 01:26
-
-
Save chookity-pokk/b6417d8341ec73658263fe7c53afc906 to your computer and use it in GitHub Desktop.
Tip calculator in python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Tip calculator | |
bill = raw_input("Enter bill amount:\n");tip = raw_input("Enter tip percentage:\n") | |
total = int(bill) * float(tip) + int(bill) | |
print("Your bill total will be, " + str(total) + " dollars.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment