Learn Python The Hard Way学习(29) - 什么是If


下面我们学习if语句,输入下面的代码,确保能够正确运行。
[python]
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.

加分练习
通过上面的练习,我们自己猜测一下if语句的作用,用自己的话回答下面的问题。
1. 你认为if对它下面的代码做了什么?
判断为True就执行它下面的代码,否则不执行。

2. 为什么if下面的代码要缩进4个空格?
为了表示这些代码属于if判断下包括的代码。

3. 如果不缩进会发生什么?
会提示一个缩进错误。

4. 你可以从第27节中拿一些布尔表达式来做if判断吗?

5. 改变people,dogs,cats变量的值,看看会发生什么?


作者:lixiang0522

相关内容

    暂无相关文章

评论关闭