python function set argument type code example
Example 1: python function argument type
def pick(l: list, index: int) -> int:
return l[index]
Example 2: how to set the type of the arguments functions in pytohn
def showPrompt(symbol :str, container :str) -> None:
while container.lower() != "exit":
container = str(input(symbol))
Example 3: 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 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"