“discord.py argumento opcional” Código de respuesta

Arg Discord PY opcional

async def command (ctx, amount: typing.Optional[int] = 0)
CowCode

discord.py argumento opcional

@client.command()
async def hellothere(ctx, *, msg):
    await ctx.send("General Kenobi")
#to add an optional Argument simply add an =None (anything else alowed to) after msg
#the * means that it gives you everthing after the command
async def hellothere(ctx, *, msg=''):
Eager Elephant

Respuestas similares a “discord.py argumento opcional”

Preguntas similares a “discord.py argumento opcional”

Más respuestas relacionadas con “discord.py argumento opcional” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código