python function parameters default value code example

Example 1: python default arguments

def my_function(name, age = 20):
  print(name + " is " + str(age) + " years old"

my_function("Mitro") # Mitro is 20 years old
my_function("Mitro", 26) #Mitro is 26 years old

Example 2: python default arguments

def your_function(arg,kwarg='default'):
    return arg + kwarg

Example 3: python default value

d = {'a': 1, 'b': 2}

print(d.get('c', 3)) 	# 3

Example 4: python function parameters default value

def F(a, b=None):
    if b is None:
        b = []
    b.append(a)
    return b

Tags:

Misc Example