"global" keyword in Python means that the variable is not redeclared in this scope. code example
Example 1: python global variables
global var1
var1 = 'whatever'
Example 2: how to make variable global in python
global variable
variable = 'whatever'