type of input function in python code example
Example: how to specify an input type to a function in python
def function(input1: int, input2: float, input3: bool, input4: list, input5: str):
pass
def function(input1: int, input2: float, input3: bool, input4: list, input5: str):
pass