最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

Python中的if、else、elif语句用法简明讲解

来源:懂视网 责编:小采 时间:2020-11-27 14:35:27
文档

Python中的if、else、elif语句用法简明讲解

Python中的if、else、elif语句用法简明讲解:下面我们学习if语句,输入下面的代码,确保能够正确运行。 people = 20 cats = 30 dogs = 15 if people cats: print Not many cats! The world is saved! if people dogs: print The world is dry!
推荐度:
导读Python中的if、else、elif语句用法简明讲解:下面我们学习if语句,输入下面的代码,确保能够正确运行。 people = 20 cats = 30 dogs = 15 if people cats: print Not many cats! The world is saved! if people dogs: print The world is dry!

下面我们学习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.

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

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

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

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

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

答案:
1. if语句下面的代码是if的一个分支。就像书里的一个章节,你选择了这章就会跳到这里阅读。这个if语句就像是说:“如果布尔判断为True,就执行下面的代码,否则跳过这些代码”。

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.

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

Python中的if、else、elif语句用法简明讲解

Python中的if、else、elif语句用法简明讲解:下面我们学习if语句,输入下面的代码,确保能够正确运行。 people = 20 cats = 30 dogs = 15 if people cats: print Not many cats! The world is saved! if people dogs: print The world is dry!
推荐度:
标签: 使用 用法 条件
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top