dir(list)
列出list的各種方法勘畔、巍举、
查看python所有的modules:help('modules')
單看python所有的modules中包含指定字符串的modules: help('modules yourstr')
查看python中常見的topics: help('topics')
查看python標(biāo)準(zhǔn)庫中的module:import os.path + help('os.path')
查看python內(nèi)置的類型:help(list)
查看python類型的成員方法:help(str.find)
查看python內(nèi)置函數(shù):help(open)