people = 30 cars = 40 trucks = 15 if cars > people: print "We should take the cars." elif cars < people: print "We should not take the cars." else: print "We can't decide." if trucks > cars: print "That's too many trucks." elif trucks < cars: print "Maybe we could take the trucks." else: print "We still can't decide." if people > trucks: print "Alright, let's just take the trucks." else: print "Fine, let's stay home then."
显示:
We should take the cars.
Maybe we could take the trucks.
Alright, let's just take the trucks.
注意
1.缩进
2.if、elif、else后面都有冒号:!!!
条件判断示例
本文通过一个简单的Python脚本示例介绍了如何使用if、elif和else进行条件判断。该脚本根据预设的人数、车辆数和卡车数决定出行方式。
336

被折叠的 条评论
为什么被折叠?



