typing functions python code example
Example 1: python typing void function
def function(param: str) -> None:
print("hey")
Example 2: typing python
from collections.abc import Iterable
def zero_all_vars(vars: Iterable[LoggedVar[int]]) -> None:
for var in vars:
var.set(0)
Example 3: 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"
Example 4: type declaration python
def greeting(name: str) -> str:
return 'Hello ' + name