Answers for "python 3 define type in arguments with default value"

18

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
Posted by: Guest on May-27-2020
5

python default arguments

def your_function(arg,kwarg='default'):
    return arg + kwarg
Posted by: Guest on April-08-2020
0

python 3 define type in arguments with default value

def foo(opts: dict = {}):
    pass

print(foo.__annotations__)
Posted by: Guest on February-17-2021

Code answers related to "python 3 define type in arguments with default value"

Python Answers by Framework

Browse Popular Code Answers by Language