标签:span 字符串 不同 int inpu oat type 报错 mil
# 判断变量类型
# 类型不同,input() 用户输入 返回的是字符串
# ‘1‘ + 3 ‘小明考了‘ + 90 报错
# type() 判断变量类型
a = 1
b = 1.5
c = ‘hello word‘
d = True
type(a) #<class ‘int‘>
type(b) #<class ‘float‘>
type(c) #<class ‘str‘>
type(d) #<class ‘bool‘>
# score = input(‘请输入成绩:‘)
# isinstance(值, 类型)
如果值属于类型的话返回True
isinstance(1, int) # True
isinstance(1, float) # False
isinstance(‘小明‘, float) #False
标签:span 字符串 不同 int inpu oat type 报错 mil
原文地址:https://www.cnblogs.com/psy0508/p/9846015.html