How to return code to top line if user makes input less than 40. I tried like this but it doesn't work. Thank you all in advance | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to return code to top line if user makes input less than 40. I tried like this but it doesn't work. Thank you all in advance

hour=float(input("how many hours:")) rate=float(input("rate per hour")) def work(hour,rate):     if hour >= 40:         print("overtime")         nor = hour*rate         pvm = (hour - 40.0) * (rate * 0.5)         o = nor + pvm         print(f'Normal shift:{nor:"^9},Overtime:{pvm:*<9},Alltogether:{o}')     if rate<40:         print("input more than 40")         work(hour,rate)     else:         exit() x=work(hour,rate) print(x)  

28th Aug 2022, 11:33 PM
Srki
Srki - avatar
4 Answers
+ 2
hour = 0 while hour < 40: hour=input("enter hours (>=40)") # from here you have a valid value for hour ...
29th Aug 2022, 8:24 PM
Oma Falk
Oma Falk - avatar
+ 7
Srki , from my point of view it doesn't make too much sense to get the input for `hour` in the main program, and then check it for correctness in the function. better to try this: to make sure that the input value for `hour` gets a correct value, you can run the input procedure in a loop. if input value is ok, exit the loop, otherwise ask again for input. doing so, we can omit: if rate<40:, also the related else branch. since the ouput of the calculation is done inside the function and nothing is returned to the caller, work(hour,rate) will be the last line that will execute.
29th Aug 2022, 5:57 PM
Lothar
Lothar - avatar
+ 5
Srki , can you provide a task description ?
29th Aug 2022, 2:28 PM
Lothar
Lothar - avatar
+ 2
Thank you all for your help 🙌🏻.
30th Aug 2022, 6:42 PM
Srki
Srki - avatar