Whenever I type:
hrs = input("Enter Hours:")
h = float(hrs)
rate = input("Enter Rate: ")
r = float(rate)
if h > 40:
h = h * r * 1.5
print("h")
The following message appears to me:
h <---- mismatch
Whenever I type:
hrs = input("Enter Hours:")
h = float(hrs)
rate = input("Enter Rate: ")
r = float(rate)
if h > 40:
h = h * r * 1.5
print("h")
The following message appears to me:
h <---- mismatch