码迷,mamicode.com
首页 > 其他好文 > 详细

L2.六.判断变量类型

时间:2018-10-24 22:25:10      阅读:183      评论:0      收藏:0      [点我收藏+]

标签: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

L2.六.判断变量类型

标签:span   字符串   不同   int   inpu   oat   type   报错   mil   

原文地址:https://www.cnblogs.com/psy0508/p/9846015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!