摘要: 1 # -*- coding:utf-8 -*- 2 import time 3 4 class Person(object): 5 ''' 6 定义父类:人 7 属性:姓名,年龄 8 方法:走路(打印:姓名+“正在走路”) 9 ''' 10 11 def __init__(self, name, 阅读全文
posted @ 2017-12-27 12:26 Panisme 阅读(394) 评论(0) 推荐(0) 编辑