按退出键退出循环 [英] exiting a loop by pressing a escape key

查看:38
本文介绍了按退出键退出循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图通过按转义键退出循环,但我的程序不起作用.有没有办法做到这一点?我的代码:

I am trying to exit a loop by pressing a escape key but my program doesn't work. Is there a way to do that? My code :

import win32api
import win32con
import time
from msvcrt import kbhit,getch

def clickerleft(x,y):
    """Clicks on given position x,y

    Input:
    x -- Horizontal position in pixels, starts from top-left position
    y -- Vertical position in pixels, start from top-left position

    """

    win32api.SetCursorPos((x,y))
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,x,y,0,0)
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,x,y,0,0)


def fonctionclic():
    while True :
        clickerleft(1193,757)
        time.sleep(0.1) 

while True :
    key = ord(getch())
    if key == 97: #a  
        fonctionclic()
    elif key == 27: #escap  
        break   

推荐答案

我不清楚你想用代码中的两个 while True: 循环来完成什么,所以我删除了其中一个,认为这可能符合您的要求:

It's not clear to me what you're trying to accomplish with the two while True: loops you have in your code, so I removed one of them thinking perhaps this does what you want:

import msvcrt
import win32api
import win32con
import time

def readch():
    """ Get a single character on Windows.

    see https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/getch-getwch?view=vs-2019
    """
    ch = msvcrt.getch()
    if ch in b'\x00\xe0':  # Arrow or function key prefix?
        ch = msvcrt.getch()  # Second call returns the actual key code.
    return ch

def clickerleft(x, y):
    """ Clicks on given x, y position.

    Input:
      x -- Horizontal position in pixels, starts from top-left position
      y -- Vertical position in pixels, start from top-left position
    """
    win32api.SetCursorPos((x, y))
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, x, y, 0, 0)
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, x, y, 0, 0)

print('Press Esc to quit or "a" to simulate mouse click')
while True:
    if msvcrt.kbhit():
        key = ord(readch())
        if key == 97:  # ord('a')
            clickerleft(1193,757)
        elif key == 27:  # Escape key?
            break
    time.sleep(0.1)
print('Done')

这篇关于按退出键退出循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆