Break Loop with Command(用命令中断循环)
问题描述
在我的 Python - Discord Bot 中,我想创建一个命令,它会导致循环运行.当我输入第二个命令时,循环应该停止.这么粗略的说:
In my Python - Discord Bot, I wanted to create a command, which causes a loop to run. The loop should stop when I enter a second command. So roughly said:
@client.event
async def on_message(message):
if message.content.startswith("!C1"):
while True:
if message.content.startswith("!C2"):
break
else:
await client.send_message(client.get_channel(ID), "Loopstuff")
await asyncio.sleep(10)
所以它每 10 秒在频道中发布一次Loopstuff",并在我输入 !C2 时停止
So it posts every 10 seconds "Loopstuff" in a Channel and stops, when I enter !C2
但我自己无法弄清楚.-.
But I cant figure it out on my own .-.
推荐答案
在你的 on_message
函数中 message
内容不会改变.因此,另一条消息将导致 on_message
再次被调用一次.您需要一种同步方法,即.!C2
消息到达时将改变的全局变量或类成员变量.
Inside your on_message
function message
content won't change. So another message will cause on_message
to be called one more time. You need a synchronisation method ie. global variable or class member variable which will be changed when !C2
message arrives.
keepLooping = False
@client.event
async def on_message(message):
global keepLooping
if message.content.startswith("!C1"):
keepLooping = True
while keepLooping:
await client.send_message(client.get_channel(ID), "Loopstuff")
await asyncio.sleep(10)
elif message.content.startswith("!C2"):
keepLooping = False
附带说明,最好提供一个独立的示例,而不仅仅是一个函数.
As a side note it's good to provide a standalone example not just a single function.
这篇关于用命令中断循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:用命令中断循环


- 我如何透明地重定向一个Python导入? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01