0

0

python自带help功能怎么使用

WBOY

WBOY

发布时间:2023-05-10 14:37:06

|

2260人浏览过

|

来源于亿速云

转载

python help使用

C:\Users\wusong>python
Python 3.8.2rc1 (tags/v3.8.2rc1:8623e68, Feb 11 2020, 10:46:21) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

输入help()

>>> help
Type help() for interactive help, or help(object) for help about object.
>>> help()
Welcome to Python 3.8's help utility!
If this is your first time using Python, you should definitely check out
the tutorial on the Internet at https://docs.python.org/3.8/tutorial/.
Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules.  To quit this help utility and
return to the interpreter, just type "quit".
To get a list of available modules, keywords, symbols, or topics, type
"modules", "keywords", "symbols", or "topics".  Each module also comes
with a one-line summary of what it does; to list the modules whose name
or summary contain a given string such as "spam", type "modules spam".
help>
这句话:To get a list of available modules, keywords, symbols, or topics, type "modules", "keywords", "symbols", or "topics".

意思就是:

要获取可用模块、关键字、符号或主题的列表,请键入 “模块”、“关键字”、“符号”或“主题”。

modules

我们先看下modules

在help模式下输入:modules

立即学习Python免费学习笔记(深入)”;

Cliclic AI
Cliclic AI

Cliclic商品背景图编辑器是一款功能强大的AI工具,帮助用户快速生成具有吸引力的商品图背景。

下载
help> modules
Please wait a moment while I gather a list of all available modules...
D:\software_install\python\lib\pkgutil.py:92: UserWarning: The numpy.array_api submodule is still experimental. See NEP 47.
  __import__(info.name)
PIL                 asyncpg             idna                selenium
PyInstaller         atexit              imaplib             serial
PyQt5               atlastk             imghdr              setuptools
__future__          attr                imp                 shelve
_abc                attrs               importlib           shlex
_ast                audioop             inspect             shutil
_asyncio            backports           io                  signal
_bisect             base64              ipaddress           simplejson
_blake2             bcrypt              itertools           site
_bootlocale         bdb                 jinja2              six
_bz2                billiard            json                smtpd
_cffi_backend       binascii            keyword             smtplib
_codecs             binhex              kiwisolver          sndhdr
_codecs_cn          bisect              kombu               sniffio
_codecs_hk          broadcaster         lib2to3             socket
_codecs_iso2022     builtins            libfuturize         socketserver
_codecs_jp          bz2                 libpasteurize       socks
_codecs_kr          cProfile            linecache           sockshandler
_codecs_tw          calendar            locale              sortedcontainers
_collections        celery              logging             sqlalchemy
_collections_abc    certifi             loguru              sqlite3
_compat_pickle      cffi                lzma                sqlparse
_compression        cgi                 mailbox             sre_compile
_contextvars        cgitb               mailcap             sre_constants
_csv                charset_normalizer  markupsafe          sre_parse
_ctypes             chunk               marshal             ssl
_ctypes_test        click               math                starlette
_datetime           click_didyoumean    matplotlib          stat
_decimal            click_plugins       mimetypes           statistics
_dummy_thread       click_repl          mmap                string
_elementtree        cmath               modulefinder        stringprep
_functools          cmd                 msilib              struct
_hashlib            code                msvcrt              subprocess
_heapq              codecs              multiprocessing     sunau
_imp                codeop              nacl                symbol
_io                 collections         netrc               symtable
_json               colorama            nntplib             sys
_locale             colorsys            nt                  sysconfig
_lsprof             compileall          ntpath              tabnanny
_lzma               concurrent          nturl2path          tarfile
_markupbase         configparser        numbers             telnetlib
_md5                contextlib          numpy               tempfile
_msi                contextvars         opcode              test
_multibytecodec     contourpy           operator            textwrap
_multiprocessing    copy                optparse            tftpy
_opcode             copyreg             ordered_set         this
_operator           crypt               ordlookup           threading
_osx_support        cryptography        os                  time
_overlapped         csv                 outcome             timeit
_pickle             ctypes              packaging           tkinter
_py_abc             curses              paramiko            token
_pydecimal          cv2                 parser              tokenize
_pyinstaller_hooks_contrib cycler              past                tortoise
_pyio               databases           pathlib             trace
_queue              dataclasses         pdb                 traceback
_random             datetime            pefile              tracemalloc
_ruamel_yaml        dateutil            peutils             trio
_sha1               dbm                 pickle              trio_websocket
_sha256             decimal             pickletools         tty
_sha3               deepdiff            pip                 turtle
_sha512             difflib             pipes               turtledemo
_signal             dis                 pkg_resources       types
_sitebuiltins       distlib             pkgutil             typing
_socket             distutils           platform            typing_extensions
_sqlite3            django              platformdirs        tzdata
_sre                doctest             plistlib            unicodedata
_ssl                dotenv              poplib              unittest
_stat               dummy_threading     posixpath           urllib
_statistics         easy_install        pprint              urllib3
_string             email               prettytable         uu
_strptime           encodings           profile             uuid
_struct             ensurepip           prompt_toolkit      uvicorn
_symtable           enum                pstats              venv
_testbuffer         errno               psutil              vine
_testcapi           fastapi             pty                 virtualenv
_testconsole        faulthandler        py_compile          warnings
_testimportmultiple filecmp             pyclbr              watchfiles
_testmultiphase     fileinput           pycparser           wave
_thread             filelock            pydantic            wcwidth
_threading_local    fnmatch             pydoc               weakref
_tkinter            fontTools           pydoc_data          webbrowser
_tracemalloc        formatter           pyecharts           websockets
_warnings           fractions           pyexpat             win32_setctime
_weakref            ftplib              pylab               win32ctypes
_weakrefset         functools           pyparsing           winreg
_winapi             future              pyqt5_plugins       winsound
_xxsubinterpreters  gc                  pyqt5_tools         wsgiref
_yaml               genericpath         pytz                wsproto
abc                 getopt              qt5_applications    xdrlib
aifc                getpass             qt5_tools           xlrd
altgraph            gettext             queue               xlwt
amqp                glob                quopri              xml
antigravity         greenlet            random              xmlrpc
anyio               gzip                re                  xxsubtype
argparse            h21                 reprlib             yaml
array               hashlib             requests            zipapp
asgiref             heapq               rlcompleter         zipfile
ast                 hmac                runpy               zipimport
async_generator     html                sched               zlib
asynchat            http                secrets
asyncio             httptools           select
asyncore            idlelib             selectors
Enter any module name to get more help.  Or, type "modules spam" to search
for modules whose name or summary contain the string "spam".
help>

从这里可以看出还是有相当多的模块,比如我们常用的re,xlrd当然也有我们后期安装的;挑一个进去看看,有啥风景,就挑xlrd

help> xlrd
Help on package xlrd:
NAME
    xlrd
DESCRIPTION
    # Copyright (c) 2005-2012 Stephen John Machin, Lingfo Pty Ltd
    # This module is part of the xlrd package, which is released under a
    # BSD-style licence.
PACKAGE CONTENTS
    biffh
    book
    compdoc
    formatting
    formula
    info
    sheet
    timemachine
    xldate
FUNCTIONS
    count_records(filename, outfile=<colorama.ansitowin32.StreamWrapper object at 0x000001D26AC13D00>)
        For debugging and analysis: summarise the file's BIFF records.
        ie: produce a sorted file of ``(record_name, count)``.
        :param filename: The path to the file to be summarised.
        :param outfile: An open file, to which the summary is written.
-- More  -- 行数:

这里面会详细介绍xlrd模块的名字,描述,模块目录、功能、版本、文件位置等信息,在最后一行看到-- More -- ,这是一个分页符,表示当前页面不能全部显示所有信息,需要部分分页操作,可以使用空格键切换下一页,也可以使用回车键看下一行,看你自己的需求进行操作,如果不想看了可输入q退出阅读模式,进入help模式,再输入q则可以继续退出help模式;

help> q
You are now leaving help and returning to the Python interpreter.
If you want to ask for help on a particular object directly from the
interpreter, you can type "help(object)".  Executing "help('string')"
has the same effect as typing a particular string at the help> prompt.
>>>

keywords

再看下我们后面会常说的关键字

help> keywords
Here is a list of the Python keywords.  Enter any keyword to get more help.
False               class               from                or
None                continue            global              pass
True                def                 if                  raise
and                 del                 import              return
as                  elif                in                  try
assert              else                is                  while
async               except              lambda              with
await               finally             nonlocal            yield
break               for                 not

symbols

这个是罗列了我们在python语言中涉及的运算符

help> symbols
Here is a list of the punctuation symbols which Python assigns special meaning
to. Enter any symbol to get more help.
!=                  +                   <=                  __
"                   +=                  <>                  `
"""                 ,                   ==                  b"
%                   -                   >                   b'
%=                  -=                  >=                  f"
&                   .                   >>                  f'
&=                  ...                 >>=                 j
'                   /                   @                   r"
'''                 //                  J                   r'
(                   //=                 [                   u"
)                   /=                  \                   u'
*                   :                   ]                   |
**                  <                   ^                   |=
**=                 <<                  ^=                  ~
*=                  <<=                 _

相关文章

python速学教程(入门到精通)
python速学教程(入门到精通)

python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载

相关标签:

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

WorkBuddy
WorkBuddy

腾讯云推出的AI原生桌面智能体工作台

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
java基础知识汇总
java基础知识汇总

java基础知识有Java的历史和特点、Java的开发环境、Java的基本数据类型、变量和常量、运算符和表达式、控制语句、数组和字符串等等知识点。想要知道更多关于java基础知识的朋友,请阅读本专题下面的的有关文章,欢迎大家来php中文网学习。

1567

2023.10.24

Go语言中的运算符有哪些
Go语言中的运算符有哪些

Go语言中的运算符有:1、加法运算符;2、减法运算符;3、乘法运算符;4、除法运算符;5、取余运算符;6、比较运算符;7、位运算符;8、按位与运算符;9、按位或运算符;10、按位异或运算符等等。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。

241

2024.02.23

php三元运算符用法
php三元运算符用法

本专题整合了php三元运算符相关教程,阅读专题下面的文章了解更多详细内容。

150

2025.10.17

TypeScript类型系统进阶与大型前端项目实践
TypeScript类型系统进阶与大型前端项目实践

本专题围绕 TypeScript 在大型前端项目中的应用展开,深入讲解类型系统设计与工程化开发方法。内容包括泛型与高级类型、类型推断机制、声明文件编写、模块化结构设计以及代码规范管理。通过真实项目案例分析,帮助开发者构建类型安全、结构清晰、易维护的前端工程体系,提高团队协作效率与代码质量。

25

2026.03.13

Python异步编程与Asyncio高并发应用实践
Python异步编程与Asyncio高并发应用实践

本专题围绕 Python 异步编程模型展开,深入讲解 Asyncio 框架的核心原理与应用实践。内容包括事件循环机制、协程任务调度、异步 IO 处理以及并发任务管理策略。通过构建高并发网络请求与异步数据处理案例,帮助开发者掌握 Python 在高并发场景中的高效开发方法,并提升系统资源利用率与整体运行性能。

43

2026.03.12

C# ASP.NET Core微服务架构与API网关实践
C# ASP.NET Core微服务架构与API网关实践

本专题围绕 C# 在现代后端架构中的微服务实践展开,系统讲解基于 ASP.NET Core 构建可扩展服务体系的核心方法。内容涵盖服务拆分策略、RESTful API 设计、服务间通信、API 网关统一入口管理以及服务治理机制。通过真实项目案例,帮助开发者掌握构建高可用微服务系统的关键技术,提高系统的可扩展性与维护效率。

174

2026.03.11

Go高并发任务调度与Goroutine池化实践
Go高并发任务调度与Goroutine池化实践

本专题围绕 Go 语言在高并发任务处理场景中的实践展开,系统讲解 Goroutine 调度模型、Channel 通信机制以及并发控制策略。内容包括任务队列设计、Goroutine 池化管理、资源限制控制以及并发任务的性能优化方法。通过实际案例演示,帮助开发者构建稳定高效的 Go 并发任务处理系统,提高系统在高负载环境下的处理能力与稳定性。

50

2026.03.10

Kotlin Android模块化架构与组件化开发实践
Kotlin Android模块化架构与组件化开发实践

本专题围绕 Kotlin 在 Android 应用开发中的架构实践展开,重点讲解模块化设计与组件化开发的实现思路。内容包括项目模块拆分策略、公共组件封装、依赖管理优化、路由通信机制以及大型项目的工程化管理方法。通过真实项目案例分析,帮助开发者构建结构清晰、易扩展且维护成本低的 Android 应用架构体系,提升团队协作效率与项目迭代速度。

92

2026.03.09

JavaScript浏览器渲染机制与前端性能优化实践
JavaScript浏览器渲染机制与前端性能优化实践

本专题围绕 JavaScript 在浏览器中的执行与渲染机制展开,系统讲解 DOM 构建、CSSOM 解析、重排与重绘原理,以及关键渲染路径优化方法。内容涵盖事件循环机制、异步任务调度、资源加载优化、代码拆分与懒加载等性能优化策略。通过真实前端项目案例,帮助开发者理解浏览器底层工作原理,并掌握提升网页加载速度与交互体验的实用技巧。

102

2026.03.06

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
最新Python教程 从入门到精通
最新Python教程 从入门到精通

共4课时 | 22.5万人学习

Django 教程
Django 教程

共28课时 | 5万人学习

SciPy 教程
SciPy 教程

共10课时 | 1.9万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号