Explain the difference between local and global variables

The difference is the scope. A local variable can only be seen within its scope, for example a variable defined in a method can only be seen within this method. However, a global variable can be seen by everything within the program.y = 1 def foo(): x = 5 def bar(): print(x) # Doesn't work print(y) # Prints 1

PC
Answered by Peter C. Python tutor

1130 Views

See similar Python Mentoring tutors

Related Python Mentoring answers

All answers ▸

Create a program that takes in two numbers and returns the highest of the two


Create a program that generates prime numbers between two integer boundareis


What does __init__ mean?


How do I check if a number is prime using a python program?


We're here to help

contact us iconContact ustelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

MyTutor is part of the IXL family of brands:

© 2025 by IXL Learning