我正在尝试获取我的机器人所处的行会数量,这是我当前的代码:
@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>]
进行响应
我该如何解决?
答案 0 :(得分:1)
str
是公会的列表,因此您只需将len
更改为@client.command()
async def servers(ctx):
await ctx.send(f"{len(client.guilds)}")
即可获得该列表的长度。
pyenv