Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python closure

def init():
    '''

    :return: increment_num function
    '''
    num = 0

    def increment_num():
        '''
        increments a number by one each call
        :return: num + 1
        '''
        nonlocal num
        num += 1
        return num

    return increment_num


increment = init()

print(increment())
print(increment())

#  output 1 2
Comment

closure python

# Closure in Python. Criteria include 
# 1. must have a nested function
# 2. nested function must refer to a value defined in the enclosing outer function
# 3. enclosing function must return a reference of nested function
# consequence: the variable in the enclosing scope is remembered even when the 
# variable goes out of scope or the function itself is removed from the current namespace.

# Illustration
def counter():
    count = 0
    def increment():
        nonlocal count
        count += 1
        return count
    return increment        # return reference to inner function

instance = counter()    # counter() function is out of namespace after this line
print(instance())       # but counter() function's inner function still works
print(instance())		# and count variable doesn't get refreshed to 0
print(instance())
# 1
# 2
# 3

# Pros: Closures can avoid the use of global values and provides some form of data hiding.
# When there is one method to be implemented in a class, closures can provide an 
# alternate and more elegant solution.
def make_multiplier_of(n):
    def multiplier(x):
        return x * n
    return multiplier

times3 = make_multiplier_of(3)  # Multiplier of 3
times5 = make_multiplier_of(5)  # Multiplier of 5

print(times3(9))
# Output: 27

print(times5(3))
# Output: 15

print(times5(times3(2)))
# Output: 30
Comment

closures in python

def make_counter():

    count = 0
    def inner():

        nonlocal count
        count += 1
        return count

    return inner
Comment

closures in python

def make_summer():

    data = []

    def summer(val):

        data.append(val)
        _sum = sum(data)

        return _sum

    return summer
Comment

closure python

# Closure in Python. Criteria include 
# 1. must have a nested function
# 2. nested function must refer to a value defined in the enclosing outer function
# 3. enclosing function must return a reference of nested function
# consequence: inner function that remembers the variables in its enclosing scope
# even when the outer function is done executing, the variable goes out of scope
# or the function itself is removed from the current namespace. 

# Illustration
def counter():
    count = 0
    def increment():
        nonlocal count
        count += 1
        return count
    return increment        # return reference to inner function

instance = counter()    # counter() function is removed from namespace after this line
print(instance())       # but counter() function's inner function still works
print(instance())       # and it remembers count variable, i.e. it does not get refreshed to 0
print(instance())
# 1
# 2
# 3

# Pros: Closures can avoid the use of global values and provides some form of data hiding.
# When there is one method to be implemented in a class, closures can provide an 
# alternate and more elegant solution.
def make_multiplier_of(n):
    def multiplier(x):
        return x * n
    return multiplier

times3 = make_multiplier_of(3)  # Multiplier of 3
times5 = make_multiplier_of(5)  # Multiplier of 5

print(times3(9))
# Output: 27

print(times5(3))
# Output: 15

print(times5(times3(2)))
# Output: 30

# Python decorators use closure extensively, as it takes a function as parameter
# adds functionality to it and returns the original function. 
Comment

PREVIOUS NEXT
Code Example
Python :: plotly facet_grid python 
Python :: Python RegEx SubString – re.sub() 
Python :: NumPy flipud Syntax 
Python :: python divide and round away operator 
Python :: image data generator tensorflow 
Python :: como poner estado a un bot en discord 
Python :: remove duplicates in json python 
Python :: pandas make currency with commas 
Python :: error python 
Python :: python remove white space 
Python :: python trim zero off end of list 
Python :: cpickle python 
Python :: Python DateTime Time Class Example 
Python :: aiohttps 
Python :: python cron job virtualenv 
Python :: how to make a python file delete itself 
Python :: python how to invert an array 
Python :: NumPy roll Example 
Python :: python count elements in sublists 
Python :: how to step or only print every two element of list python 
Python :: assign multiple columns pandas 
Python :: re.search variable 
Python :: mac big sur and python3 problems 
Python :: python get parent class 
Python :: iterate last day of months python 
Python :: Python Renaming a Directory or a File 
Python :: swapping variables 
Python :: pandas switch column levels 
Python :: pandas from range of columns 
Python :: python count how many times a word appears in a string 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =