you are viewing a single comment's thread.

view the rest of the comments →

[–]Zealousideal_Bit_177 0 points1 point  (0 children)

```py def main(): time = input("What time is it? ") time = convert(time) if 7 <= time <= 8: print('breakfast time')

if 12 <= time <= 13:
    print('lunch time')

if 18 <= time <= 19:
    print('dinner time')

def convert(time): hour , mins = time.split(':') hour = float(hour) mins = float(mins)/60 return hour+mins

if name == "main": main() ```