python define type of function parameter code example
Example: 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))