摘要: import os class Account: def __init__(self, username, password, money=0): self.username = username self.password = password self.money = money class ATM: def __init__... 阅读全文
posted @ 2018-11-17 19:36 阿布_alone 阅读(160) 评论(0) 推荐(0) 编辑
TOP