type checking python code example
Example 1: check type of variable in python
str = "Hello"
type(str)
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)