Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Modifying a Global Variable | Variable Scope
course content

Course Content

Intermediate Python: Arguments, Scopes and Decorators

Challenge: Modifying a Global VariableChallenge: Modifying a Global Variable

Task

This task shows how you can modify a global variable from within a function using the global keyword.

  1. Use the keyword global for receiving access to modify global_var;
  2. Increase global_var value on to 5;
  3. Call the function modify_global to implement changes;
  4. Print modified global_var.

Everything was clear?

Section 4. Chapter 3
toggle bottom row
course content

Course Content

Intermediate Python: Arguments, Scopes and Decorators

Challenge: Modifying a Global VariableChallenge: Modifying a Global Variable

Task

This task shows how you can modify a global variable from within a function using the global keyword.

  1. Use the keyword global for receiving access to modify global_var;
  2. Increase global_var value on to 5;
  3. Call the function modify_global to implement changes;
  4. Print modified global_var.

Everything was clear?

Section 4. Chapter 3
toggle bottom row
some-alt