记录类属性

Dew*_*wfy 5 python attributes class self-documenting

以下示例摘自"Dive into python"一书.

class MP3FileInfo(FileInfo):
    "store ID3v1.0 MP3 tags"
    tagDataMap = ...
Run Code Online (Sandbox Code Playgroud)

此示例显示记录MP3FileInfo,但如何向MP3FileInfo添加帮助.tagDataMap

aeh*_*lke 1

将其更改为属性方法。