Crossin的编程教室
标题:
如何实现在while循环中 监听键盘 来中断或继续
[打印本页]
作者:
lzp123456
时间:
2020-6-23 17:19
标题:
如何实现在while循环中 监听键盘 来中断或继续
a=1
while a:
print("...")
我想实现在循环开始后 按s 暂停 按c继续 按e 结束循环
作者:
crossin先生
时间:
2020-6-24 16:59
a=1
while a:
print("...")
x = input('请输入(按s暂停 按c继续):')
if x == 's':
break
elif x == 'c':
continue
作者:
chendonghai
时间:
2020-8-18 18:05
crossin先生 发表于 2020-6-24 16:59
a=1
while a:
print("...")
hello crossin老师~
楼主好像要的效果是,一直打印'...',在这过程中按下s即暂停,按C继续,按E break噢。~
作者:
crossin先生
时间:
2020-8-18 21:36
pynput
欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/)
Powered by Discuz! X2.5