本篇文章介紹Python 類別的__str__() 方法。 ... class Demo2: def __init__(self, i): self.i = i def __str__(self): return str(self.i) d = Demo2(9528) print(d) ...
確定! 回上一頁