摘要: 没有使用 !r: class Point: def __init__(self, x, y): self.x = x self.y = y def __repr__(self): return f'Point({self.x}, {self.y})' p = Point('1', '2') prin 阅读全文
posted @ 2023-11-09 23:11 chuangzhou 阅读(53) 评论(0) 推荐(0) 编辑