Scope

Viết hàm trong Python

Shayne Miel

Software Architect @ Duo Security

Names

tom

Viết hàm trong Python

Names

tom and janelle

Viết hàm trong Python

Scope

tom and janelle

Viết hàm trong Python

Scope

tom, janelle, and another tom

Viết hàm trong Python

Scope

x = 7
y = 200
print(x)
7
def foo():
    x = 42
    print(x)
    print(y)
foo()
42
200
print(x)
7
Viết hàm trong Python

Scope

scope_question

Viết hàm trong Python

Scope

local scope

Viết hàm trong Python

Scope

global scope

Viết hàm trong Python

Scope

builtin scope

Viết hàm trong Python

Scope

nonlocal scope

Viết hàm trong Python

The global keyword

x = 7

def foo():
  x = 42
  print(x)

foo()
42
print(x)
7
x = 7

def foo():
  global x
  x = 42
  print(x)

foo()
42
print(x)
42
Viết hàm trong Python

The nonlocal keyword

def foo():
  x = 10

  def bar():
    x = 200
    print(x)

  bar()
  print(x)

foo()
200
10
def foo():
  x = 10

  def bar():
    nonlocal x
    x = 200
    print(x)

  bar()
  print(x)

foo()
200
200
Viết hàm trong Python

Let's practice!

Viết hàm trong Python

Preparing Video For Download...