2022年6月7日
摘要: user.py 1 class User: 2 count=0 3 def __init__(self,name='guest',password='111111',status='1'): 4 User.count+=1 5 self.name=name 6 self.password=passw 阅读全文
posted @ 2022-06-07 11:41 VolcanX 阅读(19) 评论(1) 推荐(0) 编辑