第二章、python基本数据类型
朦遇泽福,初修大道
运算符
1、算数运算:返回结果
2、比较运算:返回布尔值
3、赋值运算:返回结果
4、逻辑运算:返回布尔值
从前往后计算
user = "alex"
pwd = "123"
user == 'alex' and pwd == '123' or 1==1 and pwd =='4523'
true and true 后面出现 or 就不看后面,即为真
5、成员运算:返回布尔值
1、基本数据类型
数字 int 所有功能都在int里
a1= 123
a2 = 456
字符串 str
s1 = “fdasfas”
s2 = “fasd”
列表 list
。。。
元组 tuple
。。。
字典 dict
。。。
布尔值 bool
。。。
2、
int方法
str方法
list方法
tuple方法
dict方法