We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 851140f commit 5def862Copy full SHA for 5def862
1 file changed
Task/9.College_time_table.py
@@ -6,5 +6,9 @@ def time_table(current_time):
6
start_hrs,start_min=map(int,start_time.split("."))
7
if start_hrs<curent_hrs or (start_hrs==curent_hrs)and start_min<=current_min:
8
end_hrs=start_hrs+1
9
- if start_min==0 else
+ if start_min==0 :
10
+ pass
11
+ else:
12
13
+
14
time_table("10:00")
0 commit comments