python parameter 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")
my_function("Mitro", 26)
Example 2: python default arguments
def your_function(arg,kwarg='default'):
return arg + kwarg
Example 3: default values python
class Test:
def __init__(self, val, num = 0):
self.val = val
self.num = num
t = Test(1)
print(t.num)
t = Test(1, 2)
print(t.num)
Example 4: Python Default Arguments
def greet(name, msg="Good morning!"):
"""
This function greets to
the person with the
provided message.
If the message is not provided,
it defaults to "Good
morning!"
"""
print("Hello", name + ', ' + msg)
greet("Kate")
greet("Bruce", "How do you do?")