can python functions take any types of arguments code example
Example 1: 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 2: types of parameters in a function in python
def add(a,b=5,c=10): return (a+b+c)