摘要: def eat(): print(1) print(2) eat() #调用函数 class Person: def eat2(self): print(1) print(2) p=person() p.eat2() #使用方法 阅读全文
posted @ 2018-07-12 09:13 21keya 阅读(58) 评论(0) 推荐(0)