turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。
turtle .write_docstringdict()
此方法用于创建docstring-dictionary并将其写入文件。
用法:
turtle.write_docstringdict(filename='turtle_docstringdict')
必须显式调用( turtle 图形类不使用)。 docstring字典将被写入Python脚本<filname> .py。它旨在用作将文档字符串翻译成不同语言的模板。
下面是上述方法的实现示例:
Python3
# importing package
import turtle
# making docstringdictionary file
turtle.write_docstringdict(filename='turtle_docstringdict')
输出:
在这里,我们可以看到一个名称为“turtle_docstringdict.py”的输出文件,其中存储了有关龟方法的示例说明。所有内容都以字典(键值对)的形式存储,其中:
- 键:方法名称
- 值:举例说明
相关用法
- Python Wand function()用法及代码示例
- Python tell()用法及代码示例
- Python id()用法及代码示例
- Python map()用法及代码示例
- Python dir()用法及代码示例
- Python cmp()用法及代码示例
- Python int()用法及代码示例
- Python ord()用法及代码示例
- Python hex()用法及代码示例
- Python now()用法及代码示例
- Python oct()用法及代码示例
- Python str()用法及代码示例
- Python sum()用法及代码示例
- Python seek()用法及代码示例
- Python reversed()用法及代码示例
注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.write_docstringdict() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。