CODE 1:
x=4
def func():
print("HELLO WORLD")
y=x+2
print (y)
print (x) # gives o/p as HELLO WORLD 6,4,4.
func()
print (x)
CODE 2:
x=4
def func():
print("HELLO WORLD")
y=x+2
x=x+2 # gives an error here
print (y)
print (x)
func()
print (x)
In the first code, it is not showing any error, it's adding the x value to 2 and resulting back to y and it prints the o/p as 6,4,4. But Actually as I learnt so for, it should point an error because I am not giving the global declaration for x variable inside the func(). But its not ponting any error but in Code 2 it gives an error saying that x referenced before assignment.
The question is can x can be used for the assignment of its value to other variables? Even it is not followed with global declaration?