So lassen Sie einen Bot Hallo , wenn ein Benutzer mit Python in Zwietracht Hallo sagt

@client.command()
async def hello(ctx):
    await ctx.send(f"hello, {ctx.author.name}")
TarunDaCoder