global a , x
a = 100 ; x = 50


def print_():
    
    print(a)
    b=200
    print(b)
    def aaa():
        c = 300
        print("inner function")

    aaa()
    return "hello world"

print(print_()); print(a)
print(x)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: