python如何定义类
python定义类的方法:
在python中定义类需要使用关键词class
用“Class<类名()>”就可以定义一个类了
示例如下:
class li(): def p(self): print(123) if __name__ == '__main__': obj = li() obj.p()
执行结果如下:
想了解更多python知识,请观看Python入门教程(黑马程序员)!!
来源:PY学习网:原文地址:https://www.py.cn/article.html