Nesting

Functions Can Be Nested

def func1(a, b): 
	def inner_func(x):
		return x*x*x 
	return inner_func(a) + inner_func(b)