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()
Implémentation Python consistant à appuyer sur n'importe quelle touche pour continuer
while True: time.sleep(1)
1. Utilisez time.sleep
2. Utilisez le filetage.Condition
2. Utilisez attendre la réponse du clavier
Implémentation Python consistant à appuyer sur n'importe quelle touche pour continuer