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
Intermediate Python: Arguments, Scopes and Decorators

Challenge: Modifying a Global VariableChallenge: Modifying a Global Variable

Tarefa

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.

Tudo estava claro?

Seção 4. Capítulo 3
toggle bottom row
course content

Conteúdo do Curso

Intermediate Python: Arguments, Scopes and Decorators

Challenge: Modifying a Global VariableChallenge: Modifying a Global Variable

Tarefa

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.

Tudo estava claro?

Seção 4. Capítulo 3
toggle bottom row
some-alt