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 :: dictionary.com 
Python :: python separate strings into characters 
Python :: mean absolute error in machine learning formula 
Python :: pandas filter rows by column value regex 
Python :: hmac sha256 python 
Python :: char list python 
Python :: python dict items 
Python :: get full path of document 
Python :: class __call__ method python 
Python :: simple python game code 
Python :: smooth interpolation python 
Python :: neat way to print 2d array 
Python :: np.append 
Python :: python singleton class 
Python :: how to sum all the values in a list in python 
Python :: add legend to colorbar 
Python :: Join query flask-sqlalchemy 
Python :: como instalar python en ubuntu 20.04 
Python :: python arrow 
Python :: python get file ending 
Python :: python split() source code 
Python :: loading bar 
Python :: gui button in tkinter color 
Python :: django middleware 
Python :: aws python sdk 
Python :: private key 
Python :: list vs tuple 
Python :: bitbucket rest api python example 
Python :: numpy column 
Python :: Routes In Django 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =