<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
C:Userswusong>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
在help模式下輸入:modules
help> modules Please wait a moment while I gather a list of all available modules... D:software_installpythonlibpkgutil.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 h11 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. >>>
再看下我們後面會常說的關鍵字
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
這個是羅列了我們在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' * : ] | ** < ^ |= **= << ^= ~ *= <<= _
ok,差不多就簡單的到這了,裡面具體的內容還需要在後期使用過程中發現,modules裡面的內容是最多的,當然即使你不看這些東西也不影響你學習python,這些都是都是輔助~~~
以上就是python入門學習之自帶help功能初步使用範例的詳細內容,更多關於python自帶help功能的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45