default parameter value python for number type code example
Example: python 3 define type in arguments with default value
def foo(opts: dict = {}):
pass
print(foo.__annotations__)
def foo(opts: dict = {}):
pass
print(foo.__annotations__)