Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

discord.py - I'm making an 8ball command, but python won't let me add a number to the command

I'm making an 8ball command, but python won't let me add a number to the command. What I want to make:

@client.command()
async def 8ball(ctx, args):
    #code here

Error:

  File "main.py", line 631
    async def 8ball(ctx, args=None):
              ^
SyntaxError: invalid syntax

Can someone help me? Thanks in advance

question from:https://stackoverflow.com/questions/65875253/im-making-an-8ball-command-but-python-wont-let-me-add-a-number-to-the-command

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use Aliases. Aliases can be thought of as other names the command can be called through.

@client.command(aliases=['8ball'])
async def _8ball(ctx, args):
    #code here

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...