python输出数据类型

在Python中,可以使用type()函数来输出一个对象的数据类型。以下是一个示例:

# 整数

x = 5

print(type(x))  # 输出

# 浮点数

y = 3.14

print(type(y))  # 输出

# 字符串

s = "Hello, World!"

print(type(s))  # 输出

# 列表

my_list = [1, 2, 3]

print(type(my_list))  # 输出

# 字典

my_dict = {'a': 1, 'b': 2}

print(type(my_dict))  # 输出

# 集合

my_set = {1, 2, 3}

print(type(my_set))  # 输出

# 布尔值

b = True

print(type(b))  # 输出

你可能感兴趣的:(python,windows,开发语言)