how to get the user ID of a user using discord bot py code example
Example 1: discord py get user by id
user = bot.get_user(user_id)
Example 2: how to get username with userid discord.py
username = client.get_user(user_id)
user = bot.get_user(user_id)
username = client.get_user(user_id)