cs50python icon indicating copy to clipboard operation
cs50python copied to clipboard

set1

Open rohit20032003 opened this issue 1 year ago • 0 comments

meal correct code def main(): time = input("Enter time: ") hours = convert(time)

if 7 <= hours <= 8:
    print("breakfast time")
elif 12 <= hours <= 13:
    print("lunch time")
elif 18 <= hours <= 19:
    print("dinner time")

def convert(time): hours, minutes = time.split(":") hours = int(hours) minutes = int(minutes) return hours + minutes / 60

if name == "main": main()

rohit20032003 avatar Jun 28 '24 12:06 rohit20032003