您现在的位置是:课程教程文章
python如何查看变量的类型
2023-12-18 22:59课程教程文章 人已围观
有时候我们需要知道variable的数据类型,在python中有内置函数type可以获取variable的数据类型
1. 在console输入如下code:
id = 1 type(id)
输出:
<type 'int'>
2. 在console输入如下code:
id = 1L type(id)
输出:
<type 'long'>
3. 在console输入如下code:
id = 1.0 type(id)
输出:
<type 'float'>课程教程:python如何查看变量的类型
上一篇:python如何开发网站
下一篇:没有了