python访问类中docstring注释的实现方法

yipeiwu_com6年前Python基础

本文实例讲述了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程序设计有所帮助。

相关文章

Python3 XML 获取雅虎天气的实现方法

参考廖雪峰的Python教程,实现Linux Python3获取雅虎天气 #!/usr/bin/env python3 # coding: utf-8 import os from...

老生常谈Python startswith()函数与endswith函数

函数:startswith() 作用:判断字符串是否以指定字符或子字符串开头 一、函数说明 语法:string.startswith(str, beg=0,end=len(string)...

详解Python3中ceil()函数用法

详解Python3中ceil()函数用法

描述 ceil(x) 函数返回一个大于或等于 x 的的最小整数。 语法 以下是 ceil() 方法的语法: import math math.ceil( x ) 注意:cei...

python+django+rest框架配置创建方法

python+django+rest框架配置创建方法

安装好所需要的插件和包: python、django、pip等版本如下: 采用Django REST框架3.0 1、在python文件夹下D:\python\Lib\site-pack...

python 通过手机号识别出对应的微信性别(实例代码)

python 通过手机号识别出对应的微信性别,具体代码如下所述: def getGender(self,tel): self.d(resourceId="com.tencent....