Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make an argument optional in python

#set the variable = to None, and then write over none if there the argument 
#is used.
async def joke(ctx, args=None):
    if args == None:
        await ctx.send('you :D')
    else:
        await ctx.send('%s is the true joke' % args)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #argument #optional #python
ADD COMMENT
Topic
Name
6+9 =