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

python if语句

时间:2020-05-03 16:25:57      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:nbsp   control   span   pre   pytho   style   print   div   controls   

code

num = 4
if num > 0:
    print("正数")
elif num == 0:
    print("")
else:
    print("负数")
# 内嵌 if 语句
if num >= 0:
    if num == 0:
        print("")
    else:
        print("正数")
else:
    print("负数")

 

 

 

 

python if语句

标签:nbsp   control   span   pre   pytho   style   print   div   controls   

原文地址:https://www.cnblogs.com/sea-stream/p/12822048.html

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