Answers for "What are global variables and local variables"

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 "What are global variables and local variables"

Python Answers by Framework

Browse Popular Code Answers by Language