Can I call a function nested inside another function from the global scope in python3.2?
def func1(): def func2(): print(\"Hello\") retur
No, unless you return the function:
def func1(): def func2(): print("Hello") return func2 innerfunc = func1() innerfunc()
or even
func1()()