Answers for "default arguments in python"

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
Posted by: Guest on February-01-2021
2

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
Posted by: Guest on August-03-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 "default arguments in python"

Python Answers by Framework

Browse Popular Code Answers by Language