Skip to content

Instantly share code, notes, and snippets.

@tombrad
Created February 17, 2013 13:52
Show Gist options
  • Save tombrad/4971574 to your computer and use it in GitHub Desktop.
Save tombrad/4971574 to your computer and use it in GitHub Desktop.
test 3
hrs = raw_input("Enter Hours:")
hors=float(hrs)
rate = raw_input("Enter Rate:")
rate1=float(rate)
total=hors*rate1
print type(hors), type(rate1), type (total)
print total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment