python function 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: python typing list of strings
from typing import List
def my_func(l: List[int]):
pass
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"