基础

发布时间 2023-11-26 16:30:32作者: 没有云

 

 

#方式1:使用print直接输出类型信息
print(type("黑马程序猿"))
print(type(666))
print(type(11.345))
#方式2:使用变量输出type()语句的结果
string_type =("黑马程序员")
int_type =("666")
float_type =("11.345")
print(string_type)
print(int_type)
print(float_type)
#方式3:使用type()语句,查看变量中存储数据类型信息
name = "黑马程序员"
nametype=type(name)
print(nametype)

 

 类型转换