discord.py number argument code example
Example 1: 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))
Example 2: unknown amount of arguments discord py
# Include a asterisk (*) before the variable name, eg:
async def repeatback(context, *words):
# Function code