Create Global variable in Python
Make Global variable in Python from a local variable:
When a variable is defined inside a function, it’s local and can’t be used outside its function.
To make it global, we can use “global” keyword in Python.
When using the global keyword, the variable will belong to the global scope.
def mafun():
global x
x = "lets go viral"
mafun()
print("Heyy " + x)
Output:
Heyy lets go viral