dosomething 要做的事
29.比较运算符和布尔类型(True、False)
字符串比较是否相等可以用==,!=
30.条件语句-if语句:
if age>40 : print("进入老年版本") else : print("进入青年版")。。。。。注意格式写法;
多个条件一起判断:用 and 或 or 联结
例如:if age>18 and age<40 : print("中年")
if-else语句:
if xxx : xxxxxx else : xxxxx
31.判断某个值是否在列表里面:
用 in 或 not in来判断,结果为True或False