python输出数据类型
时间: 2023-06-29 08:17:30 浏览: 92
在 Python 中,可以使用 `type()` 函数来输出数据类型。下面是一些基本的使用方法:
```python
# 输出整数类型
a = 100
print(type(a))
# 输出浮点数类型
b = 3.14
print(type(b))
# 输出布尔类型
c = True
print(type(c))
# 输出字符串类型
d = "hello"
print(type(d))
# 输出列表类型
e = [1, 2, 3]
print(type(e))
# 输出字典类型
f = {"name": "Alice", "age": 18}
print(type(f))
```
在上面的例子中,`type()` 函数接受一个参数,并输出该参数的数据类型。例如,`type(a)` 输出整数类型 `<class 'int'>`,`type(d)` 输出字符串类型 `<class 'str'>`。
需要注意的是,Python 中的数据类型很多,包括整数、浮点数、布尔类型、字符串、列表、元组、集合、字典等等。在使用 `type()` 函数输出数据类型时,需要注意区分不同的数据类型。
希望这能帮到你!
阅读全文