首页 > 编程语言 > 详细

python之-if语句

时间:2015-11-17 07:11:26      阅读:148      评论:0      收藏:0      [点我收藏+]

if语句用来检验一个条件, 如果 条件为真,我们运行一块语句(称为 if-块 ), 否则 我们处理另外一块语句(称为 else-块 )。 else 从句是可选的。

#!/usr/bin/python
# Filename: if.py 
number = 23
guess = int(raw_input(‘Enter an integer : ‘))
if guess == number:
    print ‘Congratulations, you guessed it.‘ 
# New block starts here
    print "(but you do not win any prizes!)" 
# New block ends here
elif guess < number:
    print ‘No, it is a little higher than that‘ 
# Another block
    # You can do whatever you want in a block ...
else:
    print ‘No, it is a little lower than that‘ 
    # you must have guess > number to reach here
print ‘Done‘
# This last statement is always executed, after the if statement is executed

elifelse部分是可选的。一个最简单的有效if语句是:

if True:
    print ‘Yes, it is true‘


本文出自 “千面” 博客,请务必保留此出处http://oslibo.blog.51cto.com/10854638/1713150

python之-if语句

原文:http://oslibo.blog.51cto.com/10854638/1713150

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!