我只是好奇是否可以在 Python 中创建适用于任何序列的函数。例如:
>>> def head(self):
>>> return self[0]
>>>
>>> a = [1, 2, 3]
>>> a.head()
1
>>> xrange(10).head()
0
我只是好奇是否可以在 Python 中创建适用于任何序列的函数。例如:
>>> def head(self):
>>> return self[0]
>>>
>>> a = [1, 2, 3]
>>> a.head()
1
>>> xrange(10).head()
0