Utilizor
Contact Us

Python Scope

Variable visibility.

Examples

Local Scope

x is only available inside myfunc.

def myfunc():
  x = 300
  print(x)

myfunc()

Global Scope

x is available everywhere.

x = 300

def myfunc():
  print(x)

myfunc()

print(x)

Test Your Knowledge

Python Quiz

No quiz available for this topic yet.