目次
python help使用
modules
keywords
symbols
ホームページ バックエンド開発 Python チュートリアル Python付属のヘルプ機能の使い方

Python付属のヘルプ機能の使い方

May 10, 2023 pm 02:37 PM
python help

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

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&#39;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(&#39;string&#39;)"
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&#39;
%=                  -=                  >=                  f"
&                   .                   >>                  f&#39;
&=                  ...                 >>=                 j
&#39;                   /                   @                   r"
&#39;&#39;&#39;                 //                  J                   r&#39;
(                   //=                 [                   u"
)                   /=                  \                   u&#39;
*                   :                   ]                   |
**                  <                   ^                   |=
**=                 <<                  ^=                  ~
*=                  <<=                 _
ログイン後にコピー

以上がPython付属のヘルプ機能の使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

AI Hentai Generator

AI Hentai Generator

AIヘンタイを無料で生成します。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)

Debian Apacheログを使用してWebサイトのパフォーマンスを向上させる方法 Debian Apacheログを使用してWebサイトのパフォーマンスを向上させる方法 Apr 12, 2025 pm 11:36 PM

この記事では、Debianシステムの下でApacheログを分析することにより、Webサイトのパフォーマンスを改善する方法について説明します。 1.ログ分析の基本Apacheログは、IPアドレス、タイムスタンプ、リクエストURL、HTTPメソッド、応答コードなど、すべてのHTTP要求の詳細情報を記録します。 Debian Systemsでは、これらのログは通常、/var/log/apache2/access.logおよび/var/log/apache2/error.logディレクトリにあります。ログ構造を理解することは、効果的な分析の最初のステップです。 2。ログ分析ツールさまざまなツールを使用してApacheログを分析できます。コマンドラインツール:GREP、AWK、SED、およびその他のコマンドラインツール。

Python:ゲーム、GUIなど Python:ゲーム、GUIなど Apr 13, 2025 am 12:14 AM

PythonはゲームとGUI開発に優れています。 1)ゲーム開発は、2Dゲームの作成に適した図面、オーディオ、その他の機能を提供し、Pygameを使用します。 2)GUI開発は、TKINTERまたはPYQTを選択できます。 TKINTERはシンプルで使いやすく、PYQTは豊富な機能を備えており、専門能力開発に適しています。

PHPとPython:2つの一般的なプログラミング言語を比較します PHPとPython:2つの一般的なプログラミング言語を比較します Apr 14, 2025 am 12:13 AM

PHPとPythonにはそれぞれ独自の利点があり、プロジェクトの要件に従って選択します。 1.PHPは、特にWebサイトの迅速な開発とメンテナンスに適しています。 2。Pythonは、データサイエンス、機械学習、人工知能に適しており、簡潔な構文を備えており、初心者に適しています。

DDOS攻撃検出におけるDebianスニファーの役割 DDOS攻撃検出におけるDebianスニファーの役割 Apr 12, 2025 pm 10:42 PM

この記事では、DDOS攻撃検出方法について説明します。 「DebiansNiffer」の直接的なアプリケーションのケースは見つかりませんでしたが、次の方法はDDOS攻撃検出に使用できます:効果的なDDOS攻撃検出技術:トラフィック分析に基づく検出:突然のトラフィックの成長、特定のポートの接続の急増などのネットワークトラフィックの異常なパターンの識別。たとえば、PysharkライブラリとColoramaライブラリと組み合わせたPythonスクリプトは、ネットワークトラフィックをリアルタイムで監視し、アラートを発行できます。統計分析に基づく検出:データなどのネットワークトラフィックの統計的特性を分析することにより

Debian Readdirが他のツールと統合する方法 Debian Readdirが他のツールと統合する方法 Apr 13, 2025 am 09:42 AM

DebianシステムのReadDir関数は、ディレクトリコンテンツの読み取りに使用されるシステムコールであり、Cプログラミングでよく使用されます。この記事では、ReadDirを他のツールと統合して機能を強化する方法について説明します。方法1:C言語プログラムを最初にパイプラインと組み合わせて、cプログラムを作成してreaddir関数を呼び出して結果をinclude#include#include inctargc、char*argv []){dir*dir; structdireant*entry; if(argc!= 2){(argc!= 2){

Nginx SSL証明書更新Debianチュートリアル Nginx SSL証明書更新Debianチュートリアル Apr 13, 2025 am 07:21 AM

この記事では、DebianシステムでNGINXSSL証明書を更新する方法について説明します。ステップ1:最初にCERTBOTをインストールして、システムがCERTBOTおよびPython3-Certbot-Nginxパッケージがインストールされていることを確認してください。インストールされていない場合は、次のコマンドを実行してください。sudoapt-getupdatesudoapt-getinstolcallcertbotthon3-certbot-nginxステップ2:certbotコマンドを取得して構成してlet'sencrypt証明書を取得し、let'sencryptコマンドを取得し、nginx:sudocertbot - nginxを構成します。

Pythonと時間:勉強時間を最大限に活用する Pythonと時間:勉強時間を最大限に活用する Apr 14, 2025 am 12:02 AM

限られた時間でPythonの学習効率を最大化するには、PythonのDateTime、時間、およびスケジュールモジュールを使用できます。 1. DateTimeモジュールは、学習時間を記録および計画するために使用されます。 2。時間モジュールは、勉強と休息の時間を設定するのに役立ちます。 3.スケジュールモジュールは、毎週の学習タスクを自動的に配置します。

debian opensslでHTTPSサーバーを構成する方法 debian opensslでHTTPSサーバーを構成する方法 Apr 13, 2025 am 11:03 AM

DebianシステムでHTTPSサーバーの構成には、必要なソフトウェアのインストール、SSL証明書の生成、SSL証明書を使用するWebサーバー(ApacheやNginxなど)の構成など、いくつかのステップが含まれます。 Apachewebサーバーを使用していると仮定して、基本的なガイドです。 1.最初に必要なソフトウェアをインストールし、システムが最新であることを確認し、ApacheとOpenSSL:sudoaptupdatesudoaptupgraysudoaptinstaをインストールしてください

See all articles