摘要: 版本 Python 33#coding=utf-8class Employee: '所有员工的基类' empCount = 0 def __init__(self, name, salary): self.name = name self.salary ... 阅读全文
posted @ 2015-03-27 11:17 ucData 阅读(989) 评论(0) 推荐(0) 编辑