#ctx.author - имя автора #test#0000, ctx.author.id id юзера
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='$')
@bot.command()
async def ping(ctx):
await ctx.send('pong')
bot.run(TOKEN)
@bot.command()
async def get_name(ctx, member: discord.Member = None):
if member is None:
member = ctx.author
await ctx.reply(
f"Ник без ID: {member.name},\nНик как на сервере, где была использована команда: {member.guild.name},\nПолный ник (с ID): {member}."
)