Skip to content

Instantly share code, notes, and snippets.

@chookity-pokk
Last active July 10, 2018 01:26
Show Gist options
  • Save chookity-pokk/b6417d8341ec73658263fe7c53afc906 to your computer and use it in GitHub Desktop.
Save chookity-pokk/b6417d8341ec73658263fe7c53afc906 to your computer and use it in GitHub Desktop.
Tip calculator in python
#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