clock

Run Settings
LanguagePython
Language Version
Run Command
def main(): hours = int(input("enter hours: ")) minutes = int(input("enter minutes: ")) hours, minutes = validate(hours, minutes) print(f'you enter {hours} hours and {minutes} minutes') def validate(hr, mins): HOURS = 23 MINUTES = 59 while hr > HOURS: print("hours out of range") hr = int(input("enter hours")) while mins > MINUTES: print("minutes out of range") mins = int(input("enter minutes")) return hr, mins main()
Editor Settings
Theme
Key bindings
Full width
Lines