码迷,mamicode.com
首页 > 编程语言 > 详细

python基础第七天

时间:2017-05-05 10:51:25      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:ted   efi   ges   大于   png   ret   python基础   utf-8   pre   

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# 例3:if语句多个条件

num = 9
if num >= 0 and num <= 10:    # 判断值是否在0~10之间
    print ‘hello‘
>>> hello		# 输出结果

num = 10
if num < 0 or num > 10:    # 判断值是否在小于0或大于10
    print ‘hello‘
else:
	print ‘undefine‘
>>> undefine		# 输出结果

num = 8
# 判断值是否在0~5或者10~15之间
if (num >= 0 and num <= 5) or (num >= 10 and num <= 15):    
    print ‘hello‘
else:
    print ‘undefine‘
>>> undefine		# 输出结果
**************************************
实例演示
**************************************

技术分享

python基础第七天

标签:ted   efi   ges   大于   png   ret   python基础   utf-8   pre   

原文地址:http://www.cnblogs.com/badboys/p/6811330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!