python中的type

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的type相关的知识,希望对你有一定的参考价值。

我们常用type()来查看类型,使用方法如下:

 1 a = "zzzq"
 2 b = 1
 3 c = (1, "zzq123")
 4 d = [2, "dlrb"]
 5 e = {}
 6 a1 = type(a)
 7 b1 = type(b)
 8 c1 = type(c)
 9 d1 = type(d)
10 e1 = type(e)
11 print a1, b1, c1, d1, e1

我们可以看到我们提供了五种类型的变量,使用type()来获取类型并输出它

输出结果:

<type str> <type int> <type tuple> <type list> <type dict>

我们看到了:a的类型是字符串,b的类型是整数,c的类型是元组,d的类型是列表,e的类型是字典

以上是关于python中的type的主要内容,如果未能解决你的问题,请参考以下文章

Flask模板宏的概念和基本使用

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段

Python代码阅读(第13篇):检测列表中的元素是否都一样

在PaddlePaddle中的Notebook代码片段

SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段