python if语句

2021-01-29 20:27

阅读:684

标签: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


评论


亲,登录后才可以留言!