我刚刚开始使用 Pythonista 中的 discord.py 机器人,但我不确定为什么这个起始代码(从官方文档复制)不起作用 - 当我输入“!test hello”时,机器人没有回复,而当我之前使用“on_message”时,它工作得很好。当我在笔记本电脑上的 PyCharm 中尝试它时,它也不起作用。任何帮助表示赞赏。谢谢!
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.command()
async def test(ctx, arg):
await ctx.send(arg)
bot.run("myToken")