Akhil Narayanan Nair
home
Python - Global Variables
================
a=1
b=2
def Sum():
global a, b b=a+b
Sum()
print(b)
Related Posts
24 Apr 2024
»
Python - Bit NOT
23 Apr 2024
»
Python - Bit XOR
22 Apr 2024
»
Python - Bit OR