while循环
while True:
print("要循环的内容")
格式化输出
name = "赵玉冰"
age =22
info= f"我的名字叫{name}年龄是{age}" #Python3.5以上才支持
print("我的名字叫%s我的年龄是%d" % (name,age) )
逻辑运算符
#当出现 x or y的时候, 判断x是否是0 如果x==0 then y 否则返回x
print(1 or 2) # 1
print(0 or 2) # 2
print(3 or 0) # 3
print(4 or 0) # 4
#and和or 正好相反
print(0 and 3 > 1) #只要前边有0 就输出0
print(3 > 1 and 0) #只要前边的不等于0 不管什么 都输出后面的