import discord
from discord.ext import commands
import asyncio
Bot = commands.Bot(command_prefix='!') #префикс
token = '?'# токен
@Bot.command()
async def test(ctx):
argument = ??? #аргумент_команды
text = "Один два три четыре"
result = text.split(" ")
print(result[1])