摘要: #!/usr/bin/python3 import sys class Point: def __init__( self, x=0, y=0): self.x = x self.y = y def __del__(self): class_name = self.__class__.__name__ fun_name = sys._... 阅读全文
posted @ 2018-03-14 12:00 idvcn 阅读(271) 评论(0) 推荐(0) 编辑