Python中的if、else、elif语句用法简明讲解
下面我们学习if语句,输入下面的代码,确保能够正确运行。 people = 20 cats = 30 dogs = 15 if people < cats: print "Too many cats! The world is doomed!" if people > cats: print "Not many cats! The world is saved!" if people < dogs: print "The world is drooled on!" if people > dogs: print "The world is dry!" dogs += 5 if people >= dogs: print "People are greater than or equal to dogs." if people <= dogs: print "People are less than or equal to dogs." if people == dogs: print "People are dogs."
root@he-desktop:~/mystuff# python ex29.py Too many cats! The world is doomed! The world is dry! People are greater than or equal to dogs. People are less than or equal to dogs. People are dogs. 加分练习 2. 为什么if下面的代码要缩进4个空格? 3. 如果不缩进会发生什么? 4. 你可以从第27节中拿一些布尔表达式来做if判断吗? 5. 改变people,dogs,cats变量的值,看看会发生什么? 答案: 2. 用冒号结束一个语句就是要告诉python,我要开始一个新的代码段了。缩进4个空格就是说,这些代码是包含在这个代码段中的,和函数的使用一样。 3. 不缩进会报错,python规定冒号后面语句必须有缩进。 4. 可以,而且可以是复杂的语句。 5. 修改变量的值后,判断语句就会相应的变True或者False,然后输出不同的语句。 比较我的答案和你自己的答案,确保你能理解代码块这个概念,因为这个对于下面的练习非常重要。 输入下面的代码,运行它: people = 30 cars = 40 buses = 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 dicide." if buses > cars: print "That's too many buses." elif buses < cars: print "Maybe we could take the buses." else: print "We still can't decide." if people > buses: print "Alright,let's just take the buses." else: print "Fine,let's stay home then."
root@he-desktop:~/mystuff# python ex30.py We should take the cars. Maybe we could take the buses. Alright,let's just take the buses. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |