Answers for "adding optional parameters python"

0

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)
Posted by: Guest on May-18-2021

Code answers related to "adding optional parameters python"

Python Answers by Framework

Browse Popular Code Answers by Language