摘要: import time class Person(object): """人的类""" def __init__(self, name): super(Person, self).__init__() self.name = name # 记录人的名字 self.gun = None # 默认人是没 阅读全文
posted @ 2020-04-10 12:04 秋弦 阅读(118) 评论(0) 推荐(0) 编辑