摘要: 1 class point: 2 row=0 3 col=0 4 def __init__(self,row,col): 5 self.row=row 6 self.col=col 7 def copy(self): 8 return point(row=self.row,col=self.col) 阅读全文
posted @ 2020-08-01 20:15 迷离花劫 阅读(224) 评论(0) 推荐(0)