discor py mention user by id code example
Example 1: discord py get user by id
user = bot.get_user(user_id)
Example 2: python discord mention user
await message.channel.send(message.author.mention)
user = bot.get_user(user_id)
await message.channel.send(message.author.mention)