python map用法_python map 的用法

map的用法

——、我们来分析map在python的源码

class map(object):

"""

map(func, *iterables) --> map object

Make an iterator that computes the function using arguments from

利用来自可迭代的每个参数,来计算迭代的函数,当短的可迭代的参数耗尽,程序停止

each of the iterables. Stops when the shortest iterable is exhausted.

"""

def __getattribute__(self, *args, **kwargs): # real signature unknown

""" Return getattr(self, name). """

pass

getattribute(字面意思是:获取属性)

在python中的用法,

__getattribute__是访问属性的方法,我们可以通过方法重写来扩展方法的功能。

对于python来说,属性或者函数都可以被理解成一个属性,且可以通过__getattribute__获取。

当获取属性时,直接return object.__getattribute__(self, *args, **kwargs)

如果需要获取某个方法的返回值时,则需要在函数后面加上一个()即可。如果不加的话,返回的是函数引用地址。见下方代码

def __init__(self, func, *iterables): # real signature unknown; restored from __doc__

pass

这里是初始 map的函数要传入的值,两个值一个是函数,一个是可迭代的对象

def __iter__(self, *args, **kwargs): # real signature unknown

""" Implement iter(self). """

pass

把可迭代的对象变成迭代器的对象

@staticmethod # known case of __new__

def __new__(*args, **kwargs): # real signature unknown

""" Create and return a new object. See help(type) for accurate signature. """

pass

def __next__(self, *args, **kwargs): # real signature unknown

""" Implement next(self). """

pass

def __reduce__(self, *args, **kwargs): # real signature unknown

""" Return state information for pickling. """

pass

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值