Posted in Python onMay 04, 2015
本文实例讲述了python访问类中docstring注释的实现方法。分享给大家供大家参考。具体分析如下:
python的类注释是可以通过代码访问的,这样非常利于书写说明文档
class Foo: pass class Bar: """Representation of a Bar""" pass assert Foo.__doc__ == None assert Bar.__doc__ == "Representation of a Bar"
希望本文所述对大家的Python程序设计有所帮助。
python访问类中docstring注释的实现方法
- Author -
重负在身声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@