Study notes (22): zero-base mastering Python entry to actual combat-special functions, treated differently

Learn now: https://edu.csdn.net/course/play/26676/338790?utm_source=blogtoedu

Special functions:

There are built-in functions, custom functions, and special functions in python.

Lambda map filter is a special function

There are differences in calling methods and performance.

Lambda function usage:

lambda a,b,c: expression

Map function usage:

map (function, iterable object)

Filter function usage:

filter (function, iterable object)

 

 

 

 

 

Guess you like

Origin blog.csdn.net/m0_49939521/article/details/109115028