“Comment mentionner quelqu'un Discord.py” Réponses codées

Discord.py Mentionner l'utilisateur

#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 mentionner l'utilisateur

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

Comment mentionner quelqu'un Discord.py

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

Comment mentionner quelqu'un Discord.py

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

Réponses similaires à “Comment mentionner quelqu'un Discord.py”

Questions similaires à “Comment mentionner quelqu'un Discord.py”

Plus de réponses similaires à “Comment mentionner quelqu'un Discord.py” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code