Python 布尔值切换
我想制作一个自动点击器,但我的切换脚本不起作用。如果我按一次该键,它就会启动。当我再次按下它时,什么也没有发生。我并不是一个真正优秀的Python程序员,我也不知道哪里出了问题。
这是我的脚本:
import keyboard
import pyautogui
Running = False
while True:
if keyboard.is_pressed("F2"):
if Running:
Running = False
elif Running == False:
Running = True
if Running:
pyautogui.click()
if keyboard.is_pressed("t"):
exit
I want to make an auto clicker, but I have the problem that my toggle script doesn't work. if I press the key once, it starts. when I press it again nothing happens. I'm not really a good python programmer and I am clueless about what is wrong.
Here is my Script:
import keyboard
import pyautogui
Running = False
while True:
if keyboard.is_pressed("F2"):
if Running:
Running = False
elif Running == False:
Running = True
if Running:
pyautogui.click()
if keyboard.is_pressed("t"):
exit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样做:
You could do it like this:
只需在 Python 中使用
not
运算符Just use the
not
operator in Python