Answers for "local variables and global variables"

2

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.
Posted by: Guest on December-06-2020
1

local vs global variables

Local variables:
These variables can be used or exist 
only inside the function. These variables
are not used or referred by any other function.

Global variables:
These variables are the variables which
can be accessed throughout the program.
Global variables cannot be created
whenever that function is called.
Posted by: Guest on January-28-2021

Code answers related to "local variables and global variables"

Python Answers by Framework

Browse Popular Code Answers by Language