共计 441 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以通过实现 __iter__()
方法和 __next__()
方法来让自定义对象可迭代。然后可以使用 for
循环来遍历自定义对象。
以下是一个示例:
class MyObject:
def __init__(self):
self.data = [1, 2, 3, 4, 5]
self.index = 0
def __iter__(self):
return self
def __next__(self):
if self.index < len(self.data):
value = self.data[self.index]
self.index += 1
return value
else:
raise StopIteration
my_obj = MyObject()
for item in my_obj:
print(item)
在上面的示例中,MyObject
类实现了 __iter__()
方法和 __next__()
方法,使得其实例对象可以被迭代。然后通过 for
循环遍历 my_obj
对象,打印出其中的元素。
丸趣 TV 网 – 提供最优质的资源集合!
正文完