python 输出数据的类型
时间: 2024-02-05 08:41:28 浏览: 79
python输出数据类型
Python中的数据类型包括整数(int)、浮点数(float)、字符串(str)、布尔值(bool)、列表(list)、元组(tuple)、字典(dict)、集合(set)等。可以使用type()函数来输出数据的类型,例如:
```
a = 123
print(type(a)) # 输出:<class 'int'>
b = 3.14
print(type(b)) # 输出:<class 'float'>
c = "hello world"
print(type(c)) # 输出:<class 'str'>
d = True
print(type(d)) # 输出:<class 'bool'>
e = [1, 2, 3]
print(type(e)) # 输出:<class 'list'>
f = (1, 2, 3)
print(type(f)) # 输出:<class 'tuple'>
g = {"name": "Tom", "age": 20}
print(type(g)) # 输出:<class 'dict'>
h = {1, 2, 3}
print(type(h)) # 输出:<class 'set'>
```
阅读全文