您的位置:首页 > 编程语言 > Python开发

python之-if语句

2015-11-16 16:32 681 查看
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
elif
else
部分是可选的。一个最简单的有效
if
语句是:
if True:
print 'Yes, it is true'

本文出自 “千面” 博客,请务必保留此出处http://oslibo.blog.51cto.com/10854638/1713150
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: