python帮助函数 type dir help


                type 函数, 用来查看变量是什么类型 。
               
               
                >>> li = []
>>> type(li)
type 'list'>
>>>
dir 函数, 查看变量或者类型 可以使用的函数、属性。如果是类必须用引号括起。
>>> dir(li)
[... ...]
>>> dir('list') #list类
[... ...]
>>>
help 函数, 用法和dir类似。 显示所有变量或者类的详细介绍。
>>> help(li)
"""Help on class list in module __builtin__:
class list(object)
|  list() -> new list
|  list(sequence) -> new list initialized from sequence's items
|  
|  Methods defined here:
|  
|  __add__(...)
|      x.__add__(y)  x+y"""
>>> help('list')
"""Help on class list in module __builtin__:
class list(object)
|  list() -> new list
|  list(sequence) -> new list initialized from sequence's items
|  
|  Methods defined here:
|  
|  __add__(...)
|      x.__add__(y)  x+y"""