call function inside function python code example
Example 1: python define a function within a function
def print_msg(msg): # This is the outer enclosing function
def printer():# This is the nested function
print(msg)
return printer # this got changed
# Now let's try calling this function.
# Output: Hello
another = print_msg("Hello")
another()
Example 2: how to call a function in python
def func():
print(" to write statement here and call by a function ")
func()
// Returns