how to run a function python code example
Example 1: python funtion
def nameOfFunction(something):
return something
Example 2: how to call a function in python
def func():
print(" to write statement here and call by a function ")
func()
// Returns