Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
170 views
in Technique[技术] by (71.8m points)

Discord.py add content in a message

I have this code where I want it so that when I say p!serverlist it would print out the servers that it's in. I don't know how to "append" the servers in my variable a.

if message.content.startswith('p!serverlist'):
        a = ''
        e = 0
        await message.channel.send('**Servers that I am in**')
        for guild in client.guilds:
            await a.append(f' `{guild.name}` ')
            e += 1
        await message.channel.send(a)
        await message.channel.send('**I am in ' + str(e) + ' servers!**')```
question from:https://stackoverflow.com/questions/65890789/discord-py-add-content-in-a-message

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You don't .append it. You just use the += operator.

a += f' {guild.name} '

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...