Local Variables in Python: Understanding Function-Level Scope
A local variable is defined inside a function. You cannot access this variable outside the function's definition.
123456def greet(): message = "Aloha" print(message, "# local message") greet() print(message) # This line will result in an error
The output is:
Aloha # local message
NameError: name 'message' is not defined
The message variable is not accessible in the global scope; it exists only inside the function. When the function exits, this variable ceases to exist.
¡Gracias por tus comentarios!
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Awesome!
Completion rate improved to 3.7
Local Variables in Python: Understanding Function-Level Scope
Desliza para mostrar el menú
A local variable is defined inside a function. You cannot access this variable outside the function's definition.
123456def greet(): message = "Aloha" print(message, "# local message") greet() print(message) # This line will result in an error
The output is:
Aloha # local message
NameError: name 'message' is not defined
The message variable is not accessible in the global scope; it exists only inside the function. When the function exits, this variable ceases to exist.
¡Gracias por tus comentarios!