python中print type是啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中print type是啥意思相关的知识,希望对你有一定的参考价值。
python中type() 函数返回对象的类型,print函数为打印结果,
验证如下,
1、WIN+R快捷键,打开运行窗口,准备进入python环境,
2、敲入python,进入python环境,如下,
3、分别敲入 type(1), type('a'), type([1,2]),输出分别为 int、str、list类型,
4、分别敲入print(type(1)), print(type('a')), print(type([1,2]),输出如下,
参考技术A 打印参数类型,比如i=2,那么type(i)则会打印出<type 'int'>,表示变量i是整形int 参考技术B a=1print type(a)
结果为 int 整型
a="1"
print type(a)
结果为 str 字符串型
type 输出类型
本回答被提问者和网友采纳 参考技术C a = 1print(type(a))
输出整型(int)
b = '1'
print(type(b))
输出字符串(str)
c = 1.0
print(type(c))
输出浮点型(flaot)
主要的是,他可以检测一个数,一个列表,一个变量,一个字典……他可以知道他是什么类型 参考技术D print type打印类型
以上是关于python中print type是啥意思的主要内容,如果未能解决你的问题,请参考以下文章
“SyntaxError: Missing parentheses in call to 'print'”在 Python 中是啥意思?