Python discord.py read full message(Python discord.py 阅读全文)
问题描述
我正在使用 discord.py 来制作 discord 机器人.我想在用户提到的两个数字之间生成一个随机数.因此,如果用户键入 %rand 1 9
,我希望机器人返回 1 到 9 之间的随机整数,比如 4.到目前为止,这是我的代码:
I am using discord.py to make a discord bot. I would like to generate a random number between 2 numbers mentioned by the user. So if the user types %rand 1 9
, I would like the bot to return with a random integer between 1 and 9, so say 4.
Here is my code so far:
async def on_message(message):
x = str(1)
y = str(2)
if message.content.startswith('%rand ' + x + y):
NumberX = int(x)
NumberY = int(y)
msg = "Random Number Is: " + str(random.randint(NumberX,NumberY))
await client.send_message(message.channel, msg)
但是,它不起作用.我不太明白我哪里出错了.我在其他任何地方都找不到其他解决方案.我想我需要强制机器人阅读完整的消息或类似的东西.任何帮助将不胜感激.提前谢谢你.
However, it doesn't work. I don't quite understand where I am going wrong. I couldn't find another solution anywhere else. I assume I need to force the bot to read the full message or something similar. Any help will be appreciated. Thank you in advance.
推荐答案
问题在于您的 if 语句从未真正触发过.您正在检查它是否以%rand 12"开头,这不是您想要的.你的代码应该是这样的:
The problem comes from the fact that your if statement is never actually triggered. You are checking whether it starts with "%rand 12" which is not what you are looking for. Here's how your code should look:
async def on_message(message):
if message.content.startswith('%rand '):
vals = message.content.split(" ")
NumberX = int(vals[1])
NumberY = int(vals[2])
msg = "Random Number Is: " + str(random.randint(NumberX,NumberY))
await client.send_message(message.channel, msg)
另外,不要忘记 import random
以使用该功能.
Also, don't forget to import random
in order to use that function.
这篇关于Python discord.py 阅读全文的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python discord.py 阅读全文
基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 筛选NumPy数组 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01