Python中if语句的说明和简单使用实例(python里面的if语句)

网友投稿 292 2022-08-29


Python中if语句的说明和简单使用实例(python里面的if语句)

#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_suiteelse: else_suite---------------------------------------------------Python还支持elif(else-if)语句,语法格式如下:if expression: if_suiteelif expression: elif_suiteelse: else_suite---------------------------------------------------'''y=2if y>3: print "if the y great 3,print the value of y:" ,yelse: print "the value of y:" ,yz=5if z>6: print "if the z great 6,print the value of z" ,zelif z== 5: print "if the z equals 5,print the value of z:" ,zelse: print "The valuas of z is :",z


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Python中字典的定义与简单使用实例
下一篇:Java NIO 中 Selector 解析
相关文章

 发表评论

暂时没有评论,来抢沙发吧~