Source Code:
(back to article)
def example(): x = None print(x) x = 5 example()
Result:
Report an issue