python from typing import any code example
Example 1: python function argument type
def pick(l: list, index: int) -> int:
return l[index]
Example 2: python typing list of strings
from typing import List
def my_func(l: List[int]):
pass
Example 3: typing python
from collections.abc import Iterable
def zero_all_vars(vars: Iterable[LoggedVar[int]]) -> None:
for var in vars:
var.set(0)
Example 4: 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"