iconNotes in Public

  • Indice
  • Variabile Globale
  • Variabile Locale
  • Creazione variabile globale

Python global and local variables

Oct 05, 20221 min read


Indice

  1. Variabile Globale
  2. Variabile Locale
  3. Creazione variabile globale

Variabile Globale


Variabile Locale


Creazione variabile globale

Esempio funzionante:

def bo():
	global r
	r = 'ciao mondo'
 
bo()
print(r) #Output: ciao mondo

Esempio Errore:

 


Graph View

Backlinks

  • Python MOC

Created with Quartz v4.5.1 © 2025, Icon Designed by Freepik.

  • GitHub
  • Source Code
  • Report Error