inner_func.py
def outer(a, b): #Functions that can be used only within the function def inner(c, d): return c+d r=inner(a,b) print(r) outer(2,3)
output:
5
Recommended Posts