global
Published Jul 30, 2022
Contribute to Docs
The global
keyword creates or references a global variable that can be updated within the scope of a function or class.
Syntax
variable = initial_value
def function_name:
global variable
# ...
class ClassName:
global variable
def example_method:
global variable
# ...
The snippet above showcases the various places that a variable
can be referenced with the global
keyword.
Note: The variable
must not be defined and set within the function/class scope before being referenced with the global
keyword. Otherwise, an error will occur.
Codebyte Example
The following is an example of the global
keyword being used in an increment()
function:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn Python on Codecademy
- Career path
Computer Science
Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!Includes 6 CoursesWith Professional CertificationBeginner Friendly75 hours - Course
Learn Python 3
Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.With CertificateBeginner Friendly23 hours