博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2017-5-15 if语句的使用
阅读量:6182 次
发布时间:2019-06-21

本文共 1082 字,大约阅读时间需要 3 分钟。

简单实例:

cars = ['audi','bmw','subaru','toyata']

for car in cars:

if car == 'bmw':
print(car.upper())
else:
print(car.title())

 

条件测试:

car = 'bmw'

car == 'bmw'

返回True             区分大小写

 

age_0 = 20

age_1 = 18
if age_0 >= 21 and age_1 >=15:                        and两个条件都需满足
print('True')
else:
print('Flase')

 

age_0 = 20

age_1 = 18
if age_0 >= 21 or age_1 >=15:               or满足一个条件即可

print('True')

else:
print('Flase')

 

shopping = ['iphone','meat','apple','ice cream']               检查特定值是否包含在列表中,不包含则用not in

if 'iphone' in shopping:

print ('True')

 

条件判断:

requested_topping = 'mushrooms'

if requested_topping != 'an':
print('LLL')

 

 

 

 

 

if语句:

简单的if语句只有一个测试和一个操作:

age = 19

if age >= 18:
print('you are old boy')

 

if else语句:

age = 17

if age >= 18:
print('you are old boy')
else:
print('yeoyeoyeo')

 

if elif else 语句:

age = 12

if age < 4:
print('your admission cost is $0')
elif age < 18:
print('your admission cost is $5')
else:
print('your admission cost $10')

 

count = list(range(0,11))

for i in count:
if i == 1:
print('1st')
elif i ==2:
print('2nd')
elif i == 3:
print(str(i) + 'rd')
else:
print(str(i) + 'th')

 

转载于:https://www.cnblogs.com/ZhouN/p/6855276.html

你可能感兴趣的文章
权限模型
查看>>
如何配置 Log4J 只保留最近七天的日志文件
查看>>
Python 类与元类的深度挖掘 II
查看>>
prometheus收集springboot指标
查看>>
global gtags的配置
查看>>
iOS开发 — Quartz 2D知识点应用 (制作了一个Demo,源代码)
查看>>
Creating a Windows Image on OpenStack
查看>>
jquery图片自动缩放
查看>>
ie6 失真问题
查看>>
Regular Expression
查看>>
你到了第几层?图片式标题、按钮与隐藏文本
查看>>
大话重构连载14:我们是这样自动化测试的
查看>>
我的友情链接
查看>>
iis6 php安装 (一)
查看>>
关于,在Mysql中,外键是否会影响性能的问题???
查看>>
利用javascript设置图片等比例缩小
查看>>
dedeCMS如何给频道页添加缩略图
查看>>
CoreSeek快速安装
查看>>
Linux 网络性能调试工具Netstat
查看>>
我的友情链接
查看>>