स्कोप

Python में Functions लिखना

Shayne Miel

Software Architect @ Duo Security

नाम

टॉम

Python में Functions लिखना

नाम

टॉम और जेनेल

Python में Functions लिखना

स्कोप

टॉम और जेनेल

Python में Functions लिखना

स्कोप

टॉम, जेनेल, और दूसरा टॉम

Python में Functions लिखना

स्कोप

x = 7
y = 200
print(x)
7
def foo():
    x = 42
    print(x)
    print(y)
foo()
42
200
print(x)
7
Python में Functions लिखना

स्कोप

स्कोप_प्रश्न

Python में Functions लिखना

скोप

लोकल स्कोप

Python में Functions लिखना

स्कोप

ग्लोबल स्कोप

Python में Functions लिखना

स्कोप

बिल्ट-इन स्कोप

Python में Functions लिखना

स्कोप

नॉनलोकल स्कोप

Python में Functions लिखना

global कीवर्ड

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
Python में Functions लिखना

nonlocal कीवर्ड

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
Python में Functions लिखना

अभ्यास करते हैं!

Python में Functions लिखना

Preparing Video For Download...