Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
インストールされたモジュールの関数またはメソッドについて、Python 内でヘルプを取得するにはどうすればよいですか?
help(your_function)Python シェルでいつでも試すことができます。これにより、関心のある対応する関数/クラス/パッケージ/... のドキュメント ( docstringPython 用語で) が出力されます。
help(your_function)
docstring
IPythonを使用している場合は、your_function?.
your_function?
次のようなインライン ヘルプがあるbpythonを使用できます。