Decorators

Python में Functions लिखना

Shayne Miel

Software Architect @ Duo Security

Functions

फंक्शन

Python में Functions लिखना

Decorators

डेकोरेटर वाला फंक्शन

Python में Functions लिखना

इनपुट बदलें

इनपुट बदलें

Python में Functions लिखना

आउटपुट बदलें

आउटपुट बदलें

Python में Functions लिखना

फंक्शन बदलें

फंक्शन बदलें

Python में Functions लिखना

एक डेकोरेटर कैसा दिखता है?

@double_args
def multiply(a, b):
  return a * b

multiply(1, 5)
20
Python में Functions लिखना

double_args डेकोरेटर

def multiply(a, b):
  return a * b

def double_args(func): return func
new_multiply = double_args(multiply)
new_multiply(1, 5)
5
multiply(1, 5)
5
Python में Functions लिखना

double_args डेकोरेटर

def multiply(a, b):
  return a * b

def double_args(func):
# Define a new function that we can modify def wrapper(a, b):
# For now, just call the unmodified function return func(a, b)
# Return the new function return wrapper
new_multiply = double_args(multiply)
new_multiply(1, 5)
5
Python में Functions लिखना

double_args डेकोरेटर

def multiply(a, b):
  return a * b

def double_args(func): def wrapper(a, b):
# Call the passed in function, but double each argument return func(a * 2, b * 2)
return wrapper
new_multiply = double_args(multiply)
new_multiply(1, 5)
20
Python में Functions लिखना

double_args डेकोरेटर

def multiply(a, b):
  return a * b

def double_args(func): def wrapper(a, b): return func(a * 2, b * 2) return wrapper
multiply = double_args(multiply)
multiply(1, 5)
20
multiply.__closure__[0].cell_contents
<function multiply at 0x7f0060c9e620>
Python में Functions लिखना

डेकोरेटर सिंटैक्स

def double_args(func):
  def wrapper(a, b):
    return func(a * 2, b * 2)
  return wrapper

def multiply(a, b): return a * b multiply = double_args(multiply) multiply(1, 5)
20
def double_args(func):
  def wrapper(a, b):
    return func(a * 2, b * 2)
  return wrapper

@double_args def multiply(a, b): return a * b multiply(1, 5)
20
Python में Functions लिखना

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

Python में Functions लिखना

Preparing Video For Download...