4.7 type( ) 函数查询数据类型
4.7 type( ) 函数查询数据类型
type( ) 作用:查询数据类型。 语法:type('查询的内容')
常用的3种数据类型: 1、Python数据类型第一种:字符串(str)。 2、Python数据类型第二种:整数(int)。 3、Python数据类型第三种:浮点数(float)。
# 设置一个字符串变量
name = '安迪'
# 查询变量的数据类型。
type(name)
【终端输出】 str
运行代码后输出str 说明变量name 的数据类型是字符串。
# 设置一个整数变量
phone_number = 18087558755
# 查询变量的数据类型。
type(phone_number)
【终端输出】 int
运行代码后输出int 说明变量phone_number 的数据类型是整数。
# 设置一个浮点数变量
number = 88.88
# 用print函数查询变量
共有 0 条评论