码迷,mamicode.com
首页 > 编程语言 > 详细

2.python if 判断 if elif 判断

时间:2017-08-10 01:18:10      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:if判断   判断   tab   nbsp   int   pytho   print   bsp   语句   

python if判断 if elif 判断

a = 1;

b = 1;b

if  a>b:

    print(" a > b ")

else:

 print(" a不大于b吧 ")

 

if a>b:

    print(" a > b ")

elif a<b:

    print(" a < b ")

else:

    print(" a = b ")

 

 

注 : python 中 if 判断执行语句一定要加4个空格 为了方便书写将tab键改为用4个空格代替

 

2.python if 判断 if elif 判断

标签:if判断   判断   tab   nbsp   int   pytho   print   bsp   语句   

原文地址:http://www.cnblogs.com/fanpeng/p/7334746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!