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
d = {'a': 1, 'b': 2}
print(d.get('c', 3)) # 3
def f(name='Hello Guest'):
print(name or f.__default__[0])
def A(name=None):
f(name)
A()
# Hello Guest
def munge(sep: AnyStr = None): ...
def munge(input: AnyStr, sep: AnyStr = None, limit=1000): ...