怎么查看python文档
查看文档是一个程序员的基本功,这里简单介绍几种查看Python文档的方法,下面以struct模块为例。
1.help
在交互模式下,help函数是获取文档的好帮手,使用非常简单。
>>>importstruct
>>>help(struct)
Helponmodulestruct:
NAME
struct
DESCRIPTION
FunctionstoconvertbetweenPythonvaluesandCstructs.
PythonbytesobjectsareusedtoholdthedatarepresentingtheCstruct
andalsoasformatstrings(explainedbelow)todescribethelayoutofdata
intheCstruct.
Theoptionalfirstformatcharindicatesbyteorder,sizeandalignment:
@:nativeorder,size&alignment(default)
=:nativeorder,std.size&alignment
<:little-endian,std.size&alignment
>:big-endian,std.size&alignment
!:sameas>
Theremainingcharsindicatetypesofargsandmustmatchexactly;
thesecanbeprecededbyadecimalrepeatcount:
x:padbyte(nodata);c:char;b:signedbyte;B:unsignedbyte;
?:_Bool(requiresC99;ifnotavailable,charisusedinstead)
h:short;H:unsignedshort;i:int;I:unsignedint;
2.__doc__
__doc__是每个对象都有的属性,其存放了对象文档。
3.离线文档
安装Python时会自带一个chm格式的离线文档Pythondocumention,该文档的信息比较全。
4.离线模块文档
Python针对模块还有一个单独的文档,该文档在浏览器中查看。
5.在线文档。
以上内容为大家介绍了怎么查看python文档,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。
猜你喜欢LIKE
相关推荐HOT
python gensim库是什么?
pythongensim库是什么?gensim库在文本监控里,首先在稳定上,坚如磐石,不用担心稳定性问题,其次,时效性很强,执行能力很快,经常在最重要的...详情>>
2023-11-06 21:48:19python中getattr()是什么?
python中getattr()是什么?本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、getattr()用来获取对象中的属性值;获取对象object的属...详情>>
2023-11-06 21:41:07python标识符如何使用?
python标识符如何使用?为了给编程中函数、类等进行区分,会赋予它们不同的名称。我们把这种命名叫做标识符,也可以理解为符号的标记。当然这种...详情>>
2023-11-06 21:33:55Python IDE之Thonny的介绍
pythonIDE之Thonny的介绍今天要介绍的IDE,可能没用过,甚至可能没听说过。叫Thonny,是塔尔图大学开发的,适合程序员新手。它的界面很容易使用...详情>>
2023-11-06 20:54:19热门推荐
如何使用python中的help函数?
沸如何使用python的callable函数?
热python gensim库是什么?
热python中xluntils库是什么?
新python中getattr()是什么?
python中的win32com库是什么?
python标识符如何使用?
如何使用python中schedule模块?
python中ruamel.yaml模块是什么?
defaultdict在python中计算键值的和
python sleep和wait对比分析
python中字符串转成数字的几种方法
python中SocketServer是什么?
python中如何使用@contextmanage?