client = commands.Bot(command_prefix = '~', help_command=None) @client.command() async def help(ctx): await context.send('`Whatever`')
Here is what the above code is Doing:
1. We’re creating a command called help.
2. When the help command is used, it will send a message saying “Whatever”.