数字类型、布尔值、字符串、列表、元祖、字典、集合
如何查看数据类型:
1、type:查看什么数据类型
temp = "tytytyty"
t = type(temp)
print(t)
输出 <class 'str'>
2、help.type:查询类下面所有方法
help(type(temp))
3、dir:类下所有方法名称
print(dir(temp))
4、查看类下某个特定的方法
print(temp.upper())
如何查看数据类型:
temp = "tytytyty"
t = type(temp)
print(t)
输出 <class 'str'>
help(type(temp))
print(dir(temp))
print(temp.upper())