“bagaimana menyebut seseorang scord.py” Kode Jawaban

Discord.py menyebutkan pengguna

#discord.py rewrite
#python 3+
bot.command(name='pingme', help='pings the author of the message')
async def pingme(ctx):
	#to get a member from a 'ctx' object is ctx.author
	#from there its .mention will mention (ping) the user
	#also there are others like .id
	await ctx.send(ctx.author.mention)
_creare_

Python Discord menyebutkan pengguna

await message.channel.send(message.author.mention)
Delightful Dragonfly

bagaimana menyebut seseorang scord.py

myid = '<@201909896357216256>'
await client.send_message(message.channel, ' : %s is the best ' % myid)
Healthy Horse

bagaimana menyebut seseorang scord.py

await message.channel.send(f'<@{your_id_here}> is the best')
Combative Centipede

Jawaban yang mirip dengan “bagaimana menyebut seseorang scord.py”

Pertanyaan yang mirip dengan “bagaimana menyebut seseorang scord.py”

Lebih banyak jawaban terkait untuk “bagaimana menyebut seseorang scord.py” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya