标签: python
如果服务器上的当前时间不在22:00 PM - 04:00 AM的时间范围内,我需要检查Python。
编写此代码的正确方法是什么?
谢谢!
答案 0 :(得分:0)
请尝试以下方法:
import time def isWithinRange(): hour = time.localtime(time.time()).tm_hour return hour >= 22 or hour <= 4