查看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")