python make varible global code example
Example 1: how to make variable global in python
global variable
variable = 'whatever'
Example 2: global variables python
global x
x=1
global variable
variable = 'whatever'
global x
x=1