python if语句
2021-01-29 20:27
阅读:684
标签:nbsp control span pre pytho style print div controls code python if语句 标签:nbsp control span pre pytho style print div controls 原文地址:https://www.cnblogs.com/sea-stream/p/12822048.html
num = 4
if num > 0:
print("正数")
elif num == 0:
print("零")
else:
print("负数")
# 内嵌 if 语句
if num >= 0:
if num == 0:
print("零")
else:
print("正数")
else:
print("负数")
上一篇:Java自动装箱与缓存
下一篇:java中的基本数据类型
评论
亲,登录后才可以留言!