#coding=utf8 
print '''
python中标准if条件语句:
if expression:
if_suite
---------------------------------------------------
如果表达式的值为非0或布尔值为True,则代码组if_suite被执行。
python中的代码组由一条或多条语句组成一个代码块。
Python条件表达式并不需要用括号括起来。
'''
x=-0.1
#如果变量x小于0,则输出代码组中的语句
if x< .0:
print "x must be at lest 0!"

print '''
Python中也支持else语句,语法格式如下:
if expression:
if_suite
else:
else_suite
---------------------------------------------------
Python还支持elif(else-if)语句,语法格式如下:
if expression:
if_suite
elif expression:
elif_suite
else:
else_suite
---------------------------------------------------
'''
y=2
if y>3:
print "if the y great 3,print the value of y:" ,y
else:
print "the value of y:" ,y

z=5
if z>6:
print "if the z great 6,print the value of z" ,z
elif z== 5:
print "if the z equals 5,print the value of z:" ,z
else:
print "The valuas of z is :",z