ppython function code example
Example 1: function in function python
def function1(): # outer function
print ("Hello from outer function")
def function2(): # inner function
print ("Hello from inner function")
function2()
function1()
Example 2: python function
def function():
print('This is a basic function')
function()
// Returns 'This is a basic function'
def add(numA, numB):
print(numA+numB)
add(1,2)
// Returns 3
def define(value):
return value
example = define('Lorem ipsum')
print(example)
// Returns 'Lorem ipsum'