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程序设计有所帮助。

相关文章

python使用 cx_Oracle 模块进行查询操作示例

本文实例讲述了python使用 cx_Oracle 模块进行查询操作。分享给大家供大家参考,具体如下: # !/usr/bin/env python # -*- coding: ut...

Python中文件的写入读取以及附加文字方法

今天学习到python的读取文件部分。 还是以一段代码为例: filename='programming.txt' with open(filename,'w') as file_o...

Python3非对称加密算法RSA实例详解

本文实例讲述了Python3非对称加密算法RSA。分享给大家供大家参考,具体如下: python3 可以使用 Crypto.PublicKey.RSA 和 rsa 生成公钥、私钥。 其中...

Python 实现字符串中指定位置插入一个字符

如下所示: str_1='wo shi yi zhi da da niu/n'str_list=list(str_1) nPos=str_list.index('/') str_li...

python文件读写并使用mysql批量插入示例分享(python操作mysql)

复制代码 代码如下:# -*- coding: utf-8 -*-'''Created on 2013年12月9日 @author: hhdys''' import osimport m...