数据类型:
int() 整型
float()浮点型
e记法 (有点像数学中的科学计数法)
知识点概括:
字符相加,结果为和
>>> 520 + 520
1040
2.字符串相加,结果为“拼接”
>>> ‘520‘+‘1314‘
‘5201314‘
3.逻辑运算,python认为True=1,False=0,(True和False第一个字母必须为大写)
>>> True + True 2 >>> True - True 0 >>> True - False 1
4.e记法,定义c为字符串,输出的值正号‘+’默认省去。
>>> c = str(5e19) >>> c ‘5e+19‘ >>> c = str(5e-19) >>> c ‘5e-19‘
5.获得关于类型的信息
type()返回类型
>>> a = 520 >>> type (a) <class ‘int‘> >>> b = ‘love‘ >>> type(b) <class ‘str‘> >>> type(True) #返回True的类型 <class ‘bool‘> #类型为布尔类型
isinstance()判断类型与信息是否一致,返回值为布尔类型
>>> b = ‘love‘ >>> type(b) <class ‘str‘> >>> isinstance(a,int) True >>> isinstance(b,str) True
本文出自 “没那么简单” 博客,请务必保留此出处http://hungss5657.blog.51cto.com/8011603/1438928