Python Functional Programming (2)--return function

Source: Internet
Author: User

Python's functions can not only return data types such as int, str, list, dict, but also return functions!
Example One. summation [1, 2, 3, 4]
def calc_sum (LST):
Def calc_sum ():
return sum (LST)
Return calc_sum

f = Calc_sum ([1, 2, 3, 4])
Print (f ())
Example Two. Write a function Calc_prod (LST) that receives a list, returns a function, and returns a function that calculates the product of the parameter.
From Functools import reduce
def calc_prod (LST):
def prod ():
return reduce ((lambda A, b:a*b), LST)
Return PROD

f = Calc_prod ([1, 2, 3, 4])
Print (f ())

Python Functional Programming (2)--return function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.