python multiple type annotation code example
Example 1: python typing void function
def function(param: str) -> None:
# A function that doesn't return anything,
# has None as return type.
print("hey")
Example 2: python typing list of strings
from typing import List
def my_func(l: List[int]):
pass