所以我试图为我的discord.py创建一个命令搜索化妆品的机器人堡垒之夜但是它给了我这个错误:
h:allesDiscord Serverbotmsk bot.py:406: SyntaxWarning: 'str'对象不可调用;也许你漏了一个逗号?"https://fnbr.co/outfit/"(消息),
这是我的代码:
async def skin(ctx, message):
await ctx.send(
"https://fnbr.co/outfit/" (message),
)
您只是把语法弄乱了一点(正如错误所示)。正确的方法是:
await ctx.send("https://fnbr.co/outfit/" + message)
如果你安装了Python 3.6或更高版本,你也可以使用f-strings:
await ctx.send(f"https://fnbr.co/outfit/{message}")