default parameter in python 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: arguments with default parameters python

def screen_size(screen_size=80):
  return screen_aize

screen_size(120)    # the screen size is 120
screen_size()		# the screen size is 80 as default

Example 3: python default arguments

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

Example 4: default values python

class Test:
    def __init__(self, val, num = 0):
        self.val = val
        self.num = num

# you can write this:

t = Test(1)
print(t.num) # prints 0

# OR this

t = Test(1, 2)
print(t.num) # prints 2

Example 5: python function parameters default value

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