Python Global Variable und lokale Variable mit gleichem Namen

x = 5

def foo():
    x = 10
    print("local x:", x)


foo()
print("global x:", x)
SAMER SAEID