本文整理汇总了Python中Timer.Timer.compare_time方法的典型用法代码示例。如果您正苦于以下问题:Python Timer.compare_time方法的具体用法?Python Timer.compare_time怎么用?Python Timer.compare_time使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Timer.Timer
的用法示例。
在下文中一共展示了Timer.compare_time方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: enqueue
# 需要导入模块: from Timer import Timer [as 别名]
# 或者: from Timer.Timer import compare_time [as 别名]
def enqueue(self,CourseID):
testTime = time.strftime('%H:%M',time.localtime())
messagelist = [Timer.teacherID, CourseID, Timer.classlist, Timer.nowtime]
if Timer.List != True: # 判断队列是否为空 空列表即为false
Timer.List.append(messagelist) # 将需要加入的信息加入队列
else:
for line in Timer.List:
if (set(Timer.classlist) & set(line[2])): # 判断当前的的班级是否在队列中已存在
RElist = messagelist # 设置当班级重现重复上课时教师的信息
if Timer.compare_time(testTime,Timer.Time[1],Timer.Time[2]) or \
Timer.compare_time(testTime,Timer.Time[3],Timer.Time[4]) or \
Timer.compare_time(testTime, Timer.Time[5], Timer.Time[6]) :
Timer.List.remove(RElist) # 将该教师信息踢出 其后的向前移动
Timer.List.append(messagelist) # 将后进入的教师的信息加入队列
else:
print '当前班级已经在考勤之中,无法继续开始考勤'