Python Optional code example
Example 1: python optional parameters
def my_func(a = 1, b = 2, c = 3):
print(a + b + c)
my_func()
my_func(2)
my_func(c = 2)
Example 2: python optional arguments
def myfunc(a,b, *args, **kwargs):
c = kwargs.get('c', None)
d = kwargs.get('d', None)
myfunc(a,b, c='nick', d='dog', ...)
Example 3: make parameter optional python
def myfunc(a,b, *args, **kwargs):
for ar in args:
print ar
myfunc(a,b,c,d,e,f)
Example 4: python typing list of strings
from typing import List
def my_func(l: List[int]):
pass
Example 5: typing generator python
def infinite_stream(start: int) -> Iterator[int]:
while True:
yield start
start += 1
def infinite_stream(start: int) -> Generator[int, None, None]:
while True:
yield start
start += 1
Example 6: python type hint list
x: List[int] = [1]
x: Set[int] = {6, 7}
x: int = 1
x: float = 1.0
x: bool = True
x: str = "test"
x: bytes = b"test"