Skip to content

Instantly share code, notes, and snippets.

@candzon
Created November 4, 2022 00:10
Show Gist options
  • Select an option

  • Save candzon/6c76b85603b38c350a87e12162ccf219 to your computer and use it in GitHub Desktop.

Select an option

Save candzon/6c76b85603b38c350a87e12162ccf219 to your computer and use it in GitHub Desktop.
hrs = input("Enter Hours: ")
rphrs = input("Enter Rate: ")
try:
irphrs = float(rphrs)
ihrs = int(hrs)
except:
irphrs = -1
ihrs = -1
if irphrs > 0.0 and ihrs > 0 :
pay: float = float(hrs) * float(rphrs)
print(pay)
else:
print("Input not a Number")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment