私信  •  关注

Quimby

Quimby 最近创建的主题
Quimby 最近回复了
3 年前
回复了 Quimby 创建的主题 » Python中的结构化绑定

是的,你可以用 __iter__

class pair:
    def __init__(self, first, second):
        self.first = first
        self.second = second
    def __iter__(self):
        # Use tuple's iterator since it is the closest to our use case.
        return iter((self.first, self.second))