Answers for "how to make arguement optional python"

10

python optional arguments

def myfunc(a,b, *args, **kwargs):
      c = kwargs.get('c', None)
      d = kwargs.get('d', None)
      #etc
myfunc(a,b, c='nick', d='dog', ...)
Posted by: Guest on February-10-2020
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 "how to make arguement optional python"

Python Answers by Framework

Browse Popular Code Answers by Language