python discord bot commands code example
Example 1: how to import discord in python
py -3 -m pip install -U discord.py
Example 2: how to add multiple arguments in discord commands rewrite
@bot.command()
async def args(ctx, arg1, arg2):
await bot.say('You sent {} and {}'.format(arg1, arg2))