return function python code example
Example 1: how to return an output to a function in Python
''' if you don't know def can make a function,
I am making a simple squaring function to explain'''
def square(x) :
s = x*x
return s
Example 2: python return function
def double(number):
return number * 2
Example 3: how to set the return value of a function in pytohn
def showPrompt(symbol :str, container :str) -> None:
while container.lower() != "exit":
container = str(input(symbol))
Example 4: python return
def function_name(parameters):
...
return 1