本文主要是介绍Python第七课 条件判断,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
age = 3
if age >= 18:print('your age is', age)print('adult')
else:print('your age is', age)print('teenager')
注意不要少写了冒号:
。
age = 3
if age >= 18:print('adult')
elif age >= 6:print('teenager')
else:print('kid')
elif
是else if
的缩写
if
判断条件还可以简写,比如写:
if x:print('True')
只要x
是非零数值、非空字符串、非空list等,就判断为True
,否则为False
。
这篇关于Python第七课 条件判断的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!