python function additional arguments code example
Example 1: python arguments
import sys
print ("the script has the name %s" % (sys.argv[0])
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))