statsout.py
来自「Dive into python的配套源码。」· Python 代码 · 共 23 行
PY
23 行
"""Prototype multi-output moduleThis program is part of "Dive Into Python", a free Python book forexperienced programmers. Visit http://diveintopython.org/ for thelatest version."""__author__ = "Mark Pilgrim (mark@diveintopython.org)"__version__ = "$Revision: 1.2 $"__date__ = "$Date: 2004/05/05 21:57:19 $"__copyright__ = "Copyright (c) 2004 Mark Pilgrim"__license__ = "Python"def statsout_html(data): """Format data as HTML"""def statsout_xml(data): """Format data as XML"""def statsout_text(data): """Format data in plain text"""
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?