摘要:
map()函数会根据提供的函数对指定序列做映射。语法如下: map(func, *iterables) --> map object | | Make an iterator that computes the function using arguments from | each of the 阅读全文
摘要:
在python中有两种函数,一种是通过def得到的函数,一种是匿名函数,也就是lambda表达式。语法格式如下: lambda argument_list:expersion 语法中的argument_list是参数列表,它的结构与Python中函数(function)的参数列表是一样的,比如: a 阅读全文