ubuntu 按一下键即可暂停无限while循环

oo7oh9g9  于 2023-01-12  发布在  其他
关注(0)|答案(4)|浏览(233)

我是python的新手,我一直在尝试找到一种简单的方法来暂停正在运行的while-loop,使它可以从暂停的地方重新启动。我在谷歌上搜索了帮助和提示,但我找到的所有东西似乎都很复杂。有简单的方法来做到这一点吗?
我读到过你可以用termios和tkinter。
我用的是ubuntu。

mwkjh3gx

mwkjh3gx1#

这是一个简单的无限循环tkinter程序,按空格键暂停/取消暂停,按Esc键退出。
注:以下是Python 2.x的代码,如果你使用的是Python 3,请将第一行中的Tkinter改为tkinter(小写t)。

from Tkinter import *
import time

class MyLoop():
    def __init__(self, root):
        self.running = True
        self.aboutToQuit = False
        self.root = root
        self.someVar = 0
        self.root.bind("<space>", self.switch)
        self.root.bind("<Escape>", self.exit) 

        while not self.aboutToQuit:
            self.root.update() # always process new events

            if self.running:
                # do stuff
                self.someVar += 1
                print(self.someVar)
                time.sleep(.1)

            else: # If paused, don't do anything
                time.sleep(.1)

    def switch(self, event):
        print(['Unpausing','Pausing'][self.running])
        self.running = not(self.running)

    def exit(self, event):
        self.aboutToQuit = True
        self.root.destroy()

if __name__ == "__main__":
    root = Tk()
    root.withdraw() # don't show the tkinter window
    MyLoop(root)
    root.mainloop()

这是一个可能的输出,在退出之前,我手动暂停和取消暂停了程序两次。

1
2
3
4
5
6
7
Pausing
Unpausing
8
9
10
11
12
13
14
15
16
Pausing
Unpausing
17
18
19
20
21
22
23
24
25
tzdcorbm

tzdcorbm2#

不要考虑如何通过一次按键来完成,但是要恢复和暂停while循环,可以使用generator functions,参见下面的示例:

i=-1
def infi():
   global i
   while i<99999999:
       i+=1
       yield i

a=iter(infi())

for x in range(6):
    print(next(a))
#loop paused at 5     
print('now it wil start from start 6')

for x in range(11):
    print(next(a))

输出:

0
1
2
3
4
5
now it wil start from start 6
6
7
8
9
10
11
12
13
14
15
16
hgqdbh6s

hgqdbh6s3#

伙计,这是一个while循环...不要在while循环中运行它,这会阻塞CPU,只是尝试使用计时器...
下面是一个python3示例,用于从未显示的窗口获取输入,在OSX、LinuxUbuntu和Windows8上进行了测试

import tkinter as tk
import time

class App():
    def __init__(self):
        self.state = 'running'
        self.cnt = 0
        self.root = tk.Tk()
        self.update_clock()
        self.root.bind("<Key>", self.key)
        self.root.geometry('1x1+9000+9000')
        self.root.mainloop()

    def update_clock(self):
        now = time.strftime("%H:%M:%S")
        self.root.after(100, self.update_clock)
        self.root.focus_set()
        if(self.state == 'running'):
            self.cnt = self.cnt + 1
        if(self.cnt <= 100):
            print('state: ',self.state,' count:',self.cnt,'%')
        else:
            exit()

    def key(self,event):
        self.root.focus_force()
        if(event.keysym == 'Escape'):
            self.state = 'paused'
        elif(event.keysym == 'space'):
            self.state = 'running'
        print("pressed", repr(event.keysym))
        print("state",self.state)
app=App()
app.mainloop()

你可以为此感谢@saranyan...

kdfy810k

kdfy810k4#

我一直在寻找这个解决方案,但结果发现它真的很简单。我很喜欢选择模块只在Unix系统上工作,但它让事情变得很简单。

import sys
import select
inputSrc = [sys.stdin]

while True:

    # Do important stuff

    # Check if a key was pressed and if so, process input
    keypress = select.select(inputSrc, [], [], 0)[0]
    while keypress:
        for src in keypress:
            line = src.readline()
            if not line:
                inputSrc.remove(src)
            else:
                # The "enter" key prints out a menu
                if line == "\n":
                    print "Test Paused\nOptions: [0]: Quit  [any other key]: Resume"
                elif line.rstrip() == "0":
                    exit(0)
                elif len(line) >= 1: #any other key
                    print "Resuming..."
                    keypress = None

相关问题