“Discord.py Argument facultatif” Réponses codées

Arg Discord Py en option

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

Discord.py Argument facultatif

@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

Réponses similaires à “Discord.py Argument facultatif”

Questions similaires à “Discord.py Argument facultatif”

Plus de réponses similaires à “Discord.py Argument facultatif” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code