条件判断:
if 语句:
if <条件判断1>:
<执行1>
elif <条件判断2>:
<执行2>
elif <条件判断3>:
<执行3>
else:
<执行4>
if 判断条件的简写形式:只要x是非零数值、非空字符串、非空list等,就判断为True,否则为False。
if x:
pass
与if语句相似的语句结构是 测试 :
try:
pass
except:
pass
条件判断:
if 语句:
if <条件判断1>:
<执行1>
elif <条件判断2>:
<执行2>
elif <条件判断3>:
<执行3>
else:
<执行4>
if 判断条件的简写形式:只要x是非零数值、非空字符串、非空list等,就判断为True,否则为False。
if x:
pass
与if语句相似的语句结构是 测试 :
try:
pass
except:
pass
本文标题:条件判断
本文链接:https://www.haomeiwen.com/subject/wiufittx.html
网友评论