await ctx.send() discordpy 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: say something in discord discord.py
(Discord.py async)
await ctx.send("Say something here")