一、数字NUMBER
int 整形
float 浮点型
a = 12 b = 3.1 print(type(a),type(b)) #结果 <class 'int'> <class 'float'>
二、字符串 Str
Python使用单引号’或双引号”括起来的内容,就是字符串类型。三引号引起内容也是字符串,可以多行输入。
a = 'fun' b = "good" c = """ it's fun. you can enjoy it """ print(type(a),type(b),type(c)) #结果:<class 'str'> <class 'str'> <class 'str'>
同时当字符串中存在引号的内容,则是另一种引号包裹,否则计算机会无法识别。
a='你说:"你好世界"' print(type(a)) #结果:<class 'str'>
字符串也可是+和*,+表示的是连接符,*号则表示复制
msg1='hello' msg2='world' res = msg1 + msg2 print(res) print(msg1*3) #结果:helloworld #hellohellohello
三、列表 List 用于记录多个值,比如个人爱好,一个班级的姓名
使用方法:定义在[]填写入任意的数据类型,用逗号分隔每个元素。
hobbies = ['music','read','cooking','dancing']
对于列表内元素的取值使用的是索引的方式,索引从0开始,0表示的是第一个元素
print(hobbies[2]) #cooking
同时list列表中可以嵌套任意数据类型,包括列表。
l1=['a',1,[1.1,'abc']]
字典:字典dict: 记录多个key:value值 。
定义:在{}内用逗号分隔开多个key:value的值,其中value可以是任意数据类型,而key通常应该是字符串类型
info=['egon',18,'male',10,['music','read','dancing']]
取值用于key来获取元素
print(info['male'])
布尔型 bool :True /False 用来表示条件是否成立。
所有类型的值都自带布尔值: 当数据类型的值为0,None,空时,布尔值为False,除此以外都为True
print(bool(0)) print(bool(None)) print(bool('')) print(bool([])) print(bool({})) print(bool(1))