define global variable code example

Example 1: python access global variable

globvar = 0

def set_globvar_to_one():
    global globvar    # Needed to modify global copy of globvar
    globvar = 1

def print_globvar():
    print(globvar)     # No need for global declaration to read value of globvar

set_globvar_to_one()
print_globvar()       # Prints 1

Example 2: how to declare global variable in python

global n
n = 'whatever'

Example 3: what is a global variable

Global variables allow you to access data between collections,
requests, test scripts, and environments. Global variables
are available throughout a workspace. I use Global variables
to quickly test something.

Example 4: How to define global variables

Use pm.globals to define a global variable:

pm.globals.set("variable_key", "variable_value");