python 如何手动实现阻塞?
令py脚本一直阻塞直到强制退出(KeyboardInterrupt)
之前用
while True: pass
发现cpu占用太高了。。。
小伙看你根骨奇佳,潜力无限,来学PHP伐。
while True: # 等待一年 time.sleep(60*60*24*365) # 直接等待一百年 time.sleep(60*60*24*365*100)
condition=threading.Condition() condition.acquire() condition.wait()
Python实现按任意键继续
雷雷
1. 使用time.sleep
2.使用threading.Condition
2.使用等待键盘响应
Python实现按任意键继续
雷雷