Python > help(): Runtime error | builtin module namesを表示する > sys.builtin_module_names | mathはbuiltinなのかどうか問題 (macOS + homebrew | CentOS | Ubuntu)
ideone (Python 3.5)
Python3.7のmathの場所
を見て、help()を使ってFILEの位置以降を表示しようとした。
以下を試みたが、Runtime errorになる。
import math
res = help(math)
for elem in res:
print(elem)
help()を使わない方法を検討した。
別途以下を見つけた。
https://stackoverflow.com/questions/8370206/how-to-get-a-list-of-built-in-modules-in-python
import sys
print(sys.builtin_module_names)
実行結果は以下のようになった。
('_ast', '_bisect', '_codecs', '_collections', '_datetime', '_elementtree', '_functools', '_heapq', '_imp', '_io', '_locale', '_md5', '_operator', '_pickle', '_posixsubprocess', '_random', '_sha1', '_sha256', '_sha512', '_signal', '_socket', '_sre', '_stat', '_string', '_struct', '_symtable', '_thread', '_tracemalloc', '_warnings', '_weakref', 'array', 'atexit', 'binascii', 'builtins', 'errno', 'faulthandler', 'fcntl', 'gc', 'grp', 'itertools', 'marshal', 'math', 'posix', 'pwd', 'pyexpat', 'select', 'spwd', 'sys', 'syslog', 'time', 'unicodedata', 'xxsubtype', 'zipimport', 'zlib')
Python 3.5でもmathはbuiltinのようだ。
(追記 2018/01/25)
別途、Mac OS X + homebrew + Python3.6(@knoguchi さんのコメント)やCentOS6.8+Python3.6.4ではmathはbuiltinではないようです。
関連
検索用キーワード
@knoguchi さんとのコメントで登場したキーワードです。
コメントは検索できないので。
- dunder file (
math.__file__
) - スタティックリンク
- libSystem.dylib
- ld-linux-x86-64.so.2
- libm.so.6
Author And Source
この問題について(Python > help(): Runtime error | builtin module namesを表示する > sys.builtin_module_names | mathはbuiltinなのかどうか問題 (macOS + homebrew | CentOS | Ubuntu)), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/b9b18cc3786a9562bf28著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .