1、算术运算符(+ - * /)、赋值运算符(a<b<c)
python 不仅支持 a<b 还支持a<b<c
2、逻辑运算符(+= -= *= /=)
3、短路原则
(not (not True)) or (False and (not True))
4、 while循环语句
while 条件 :
if 条件:
print(“”)
elif 条件:
else :
print ("end")
.....