Skip to content

Commit 5def862

Browse files
committed
pending
1 parent 851140f commit 5def862

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Task/9.College_time_table.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,9 @@ def time_table(current_time):
66
start_hrs,start_min=map(int,start_time.split("."))
77
if start_hrs<curent_hrs or (start_hrs==curent_hrs)and start_min<=current_min:
88
end_hrs=start_hrs+1
9-
if start_min==0 else
9+
if start_min==0 :
10+
pass
11+
else:
12+
pass
13+
1014
time_table("10:00")

0 commit comments

Comments
 (0)