Akhil Narayanan Nair home

Python - Global Variables

================

a=1

b=2

def Sum():

global a, b

b=a+b

Sum()

print(b)