Switch
0
Q:

python create a function with optional parameter

def myfunc(a,b, *args, **kwargs):
      c = kwargs.get('c', None)
      d = kwargs.get('d', None)
      #etc
myfunc(a,b, c='nick', d='dog', ...)
8
def my_func(a = 1, b = 2, c = 3):
	print(a + b + c)
    
my_func()
#OUTPUT = 6

my_func(2)
#This changes the value of a to 2
#OUTPUT = 7

my_func(c = 2)
#This changes the value of c to 2
#OUTPUT = 5
5
def some_function (self, a, b, c, d = None, e = None, f = None, g = None, h = None):
    #code
3
def myfunc(a,b, *args, **kwargs):
      c = kwargs.get('c', None)
      d = kwargs.get('d', None)
      #etc
myfunc(a,b, c='nick', d='dog', ...)
0
def to_smash(total_candies, n_friends=3):
    return total_candies % n_friends
  
 #Here n_friends is Optional Parameter
0

New to Communities?

Join the community