#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
Python中if语句的说明和简单使用实例
原创WEL测试 ©著作权
文章标签 python的else语句 python的elif语句 python 多条语句 文章分类 Python 后端开发
-
Python的控制语句和循环语句
if、for、while语句
循环语句 控制语句 -
Python中while语句说明与简单使用实例
#coding=utf8 print '''Python标准的while条件循环语句如下:while express
python的while语句 while语句 python 循环语句 -
python中简单的if语句
python中简单的if语句
简单 语句 python -
JavaScript中的with语句使用说明
介绍Javascript中with语句的用法及注意事项。
作用域 严格模式 语法错误 -
Python中字典的定义与简单使用实例
#coding=utf8print '''Python中的字典映射数据类型是由键值对构成。python中字典一般以数字或者字符串作为键
Python字典说明 Python字典定义 python 数据类型 -
Python条件语句和循环语句简单使用方法
Python条件语句和循环语句简单使用方法
python 开发语言 循环语句 for循环 -
velocity用法简单实例说明 .
本知道和在使用Struts,到底
velocity struts jsp string java -
ElasticSearch的sql语法说明和简单使用
出自 图灵学院 ElasticSearch课程我自己学完了,然后给老师的代码和讲义自己练习了一遍,然后
elasticsearch sql 搜索引擎 java