how to add multiple arguments in discord commands rewrite

Solutions on MaxInterview for how to add multiple arguments in discord commands rewrite by the best coders in the world

showing results for - "how to add multiple arguments in discord commands rewrite"
Mirko
20 Jan 2016
1@bot.command()
2async def args(ctx, arg1, arg2):
3    await bot.say('You sent {} and {}'.format(arg1, arg2))