https://docs.python.org/zh-cn/3/index.htmlhtml
https://blog.csdn.net/tandelin/article/details/103399100python
>>> dir(模塊名) #查看模塊下的全部函數
>>>help()函數來查看函數的幫助信息
>>>help(module_name.func_name) or __doc__ 方法看模塊下特定函數的信息
>>> help('modules') #查看所安裝有哪些模塊