不和谐的机器人公会数量

时间:2020-10-14 23:52:52

标签: python-3.x discord discord.py-rewrite

我正在尝试获取我的机器人所处的行会数量,这是我当前的代码:

@client.command()
async def servers(ctx):
    await ctx.send(f"{str(client.guilds)}")

但是漫游器仅以[<Guild id=739683588408082462 name='Epic bot testing' shard_id=None chunked=True member_count=17>]进行响应 我该如何解决?

1 个答案:

答案 0 :(得分:1)

str是公会的列表,因此您只需将len更改为@client.command() async def servers(ctx): await ctx.send(f"{len(client.guilds)}") 即可获得该列表的长度。

pyenv