逻辑关键字
==, !=, >, <, >=, <= 这些都和C一样
and, or 逻辑与或
in, not in 在不在列表中
if
if True:
print("True")
else:
print("False")
i = 0
if i == 0
print("i == 0")
elif i == 1
print("i==1")
else
print("i!=0 && i != 1")
==, !=, >, <, >=, <= 这些都和C一样
and, or 逻辑与或
in, not in 在不在列表中
if True:
print("True")
else:
print("False")
i = 0
if i == 0
print("i == 0")
elif i == 1
print("i==1")
else
print("i!=0 && i != 1")