In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article is about how python uses functions as return values. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Use a function as the return value
As mentioned earlier, Python also supports the use of functions as return values for other functions. For example, the following procedures:
Def get_math_func (type): # define a local function to square def square (n): # ① return n * n # define a local function to calculate cubic def cube (n): # ② return n * n * n # define a local function to calculate factorial def factorial (n): # ③ Result = 1 for index in range (2 N + 1): result * = index return result # returns the local function if type = = "square": return square if type = = "cube": return cube else: return factorial# calls get_math_func () The program returns a nested function math_func = get_math_func ("cube") # to get cube function print (math_func (5)) # output 125math_func = get_math_func ("square") # to get square function print (math_func (5)) # output 25math_func = get_math_func ("other") # to get factorial function print (math_func (5)) # output
In the program, a get_math_func () function is defined, which returns another function. Next, three local functions are defined in the bold code of ①, ②, and ③ in the body of the get_math_func () function. Finally, the get_math_func () function uses one of these three local functions as the return value according to the passed parameters.
Thank you for reading! This is the end of the article on "how python uses functions as return values". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 277
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.