Différence entre la variable locale et globale dans Python

A global variable is a variable that is accessible globally.
A local variable is one that is only accessible to the current scope,
such as temporary variables used in a single function definition.
google it (mosbeh)