Why the given code shows error. def funn(): print(a) a=100 print(a) a=20 funn() print(a)
According to rule global variable can be accesses from anywhere then why thi