1''' if you don't know def can make a function,
2I am making a simple squaring function to explain'''
3# space after parentisis is needed
4def square(x) :
5 s = x*x
6 # do it with the return keyword!
7 return s
1def showPrompt(symbol :str, container :str) -> None:
2 while container.lower() != "exit":
3 container = str(input(symbol))