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



Bilel

Bilel

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x