标签:内容 false 条件语句 bsp and str python span 赋值
if 条件:
内容1
内容2
else:
内容3
内容4
# 一个等号是赋值(=)
# 两个等号是比较(==)
#不等号(!=)
#if 条件1 and 条件2(并且)
#if 条件1 or 条件2(或)
#条件可以为 true false
if......elif......
if 条件1:
xxx
elif 条件2:
xxx
elif 条件3:
xxx
else:
xxx
标签:内容 false 条件语句 bsp and str python span 赋值
原文地址:http://www.cnblogs.com/shiluoliming/p/6159316.html