操作系统:Windows 10 Python 版本:3.9,从 Microsoft Store 安装
只要我按下除Ctrl 或 Alt 或 Shift 之外的任何键,下面代码中的 while 循环就会中断。任何想法为什么?
import msvcrt
while(1):
if msvcrt.kbhit():
break
操作系统:Windows 10 Python 版本:3.9,从 Microsoft Store 安装
只要我按下除Ctrl 或 Alt 或 Shift 之外的任何键,下面代码中的 while 循环就会中断。任何想法为什么?
import msvcrt
while(1):
if msvcrt.kbhit():
break