“nieznana kwota argumentów niezgoda” Kod odpowiedzi

nieznana kwota argumentów niezgoda

# Include a asterisk (*) before the variable name, eg:

async def repeatback(context, *words):
	# Function code
Locstock

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 “nieznana kwota argumentów niezgoda”

Pytania podobne do “nieznana kwota argumentów niezgoda”

Więcej pokrewnych odpowiedzi na “nieznana kwota argumentów niezgoda” w Python

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

Przeglądaj inne języki kodu