pythonのhelp()

351 ワード

dir(list) listの様々な方法、、、
pythonのすべてのmodulesを表示する:help('modules')pythonのすべてのmodulesに指定された文字列が含まれているmodules:help('modules yourstr')pythonでよく見られるtopics:help('topics')python標準ライブラリのmodule:import osを表示します.path+help('os.path')python内蔵タイプの表示:help(list)pythonタイプのメンバーの表示方法:help(str.find)python内蔵関数の表示:help(open)