Skip to content

Instantly share code, notes, and snippets.

@foxx
Forked from harushimo/gist:4644210
Created January 24, 2018 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foxx/428f167427f4e556e467bc8ff13c18f9 to your computer and use it in GitHub Desktop.
Save foxx/428f167427f4e556e467bc8ff13c18f9 to your computer and use it in GitHub Desktop.
python
#!/usr/bin/python3
hrs = input("Enter Hours:")
rate = input("Enter Rate:")
#Computing Overtime
if float(hrs) > 40:
hrs_difference = float(hrs) - 40
#print(hrs_difference)
overtime_pay = float(hrs_difference *(rate * 1.5))
print(overtime_pay)
#total = str((float(hrs) * float(rate) + overtime_pay))
#print('Pay: ' , total)
else:
total = str(float(hrs) * float(rate))
print("Pay: " ,total)
Error Message
File "./total_hours.py", line 9, in <module>
overtime_pay = float(hrs_difference *(rate * 1.5))
TypeError: can't multiply sequence by non-int of type 'float'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment