“Discord.py Opcjonalny argument” Kod odpowiedzi

Opcjonalny arg nieznany PY

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

Discord.py Opcjonalny argument

@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

Odpowiedzi podobne do “Discord.py Opcjonalny argument”

Pytania podobne do “Discord.py Opcjonalny argument”

Więcej pokrewnych odpowiedzi na “Discord.py Opcjonalny argument” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu