python注释

metadata

  • __authors__

  • __author__

  • __contact__

  • __copyright__

  • __license__

  • __deprecated__

  • __date__

  • __version__

示例

#!/bin/python3
# coding: utf-8

"""
INTRODUCTION
"""

__author__ = "Rob Knight, Gavin Huttley, and Peter Maxwell"
__copyright__ = "Copyright 2007, The Cogent Project"
__credits__ = ["Rob Knight", "Peter Maxwell", "Gavin Huttley",
                    "Matthew Wakefield"]
__license__ = "GPL"
__version__ = "1.0.1"
__maintainer__ = "Rob Knight"
__email__ = "[email protected]"
__status__ = "Production"

最后更新于

这有帮助吗?