查看变量类型

type函数可以查看

>>> a = [1,2]
>>> type(a)
<type 'list'>
>>> a = 4
>>> type(a)
<type 'int'>
>>> a = 3.2
>>> type(a)
<type 'float'>

 

posted @ 2017-03-08 15:03  有梦就要去实现他  阅读(275)  评论(0编辑  收藏  举报