一、算术运算符
+, =, *, /, %, **, //
二、赋值运算符
=, +=, -=, *=, /=, %=, **=, //=
三、比较运算符
四、逻辑操作符
五、变量与赋值
赋值运算符是 = ,与比较运算符 == 进行区分
需要注意的是,python的变量是不可变对象,如果变量的值发生改变,python会自动创建另一个对象申请另外一块内存,改变变量的对象引用
六、流程控制
1、if语句
score = int(input("请输入成绩"))
if score>=80:
print("A")
elif score>=70 and score<80:
print("B")
elif score>=60 and score<70:
print("C")
else:
print("D")
请输入成绩78
B
2、while语句
需要注意的是 break 是跳出while的循环体,而continue是跳出本次循环,进入下一次循环
while True:
s = int(input("1+2=?"))
if s==3:
print("回答正确")
break
if s>=0 and s<=9:
continue
print("答案是个位数")
3、for语句
for a in ['b','f','g']: #对于 列表['b','f','g']中每一个元素 循环并打印出来
print(a)