📅  最后修改于: 2023-12-03 15:40:34.247000             🧑  作者: Mango
在 Python 中,我们可以使用内置函数 type()
来检查数据类型。
下面是一些常见数据类型的示例:
# 整数
print(type(4)) # <class 'int'>
# 浮点数
print(type(4.5)) # <class 'float'>
# 字符串
print(type("Hello World")) # <class 'str'>
# 列表
print(type([1, 2, 3])) # <class 'list'>
# 元组
print(type((1, 2, 3))) # <class 'tuple'>
# 字典
print(type({"name": "Alice", "age": 22})) # <class 'dict'>
# 集合
print(type({1, 2, 3})) # <class 'set'>
请注意以下几点:
type()
检查变量的类型时,要将其放在括号内;str
、int
)均为小写;使用 type()
可以方便地检查变量的数据类型,这对于 Python 编程而言非常重要。