首页 > 代码库 > type()

type()

type() 可以查看一个变量的数据类型

In [8]: a = 123In [9]: type(a)Out[9]: int

 

 

 

 

    

type()