python面向对象编程总结

python面向对象编程小结参考:http://sucre.iteye.com/blog/680101??一、类基础1、类的定义class 类名:???

python面向对象编程小结

参考:http://sucre.iteye.com/blog/680101

?

?

一、类基础

1、类的定义

class <类名>:

??? <其他语句>

class <类名>(父类名):

??? <其他语句>

7]?????
  • >>> ? ?

    ?