Python if 语句

最后更新于:2022-03-27 01:11:23

Python if 语句

Python if 语句 Python3 实例

以下实例通过使用 if…elif…else 语句判断数字是正数、负数或零:

实例(Python 3.0+)

# Filename : test.py
# author by : docs.gechiui.com/w3school

# 用户输入数字

num = float(input("输入一个数字: "))
if num > 0:
print("正数")
elif num == 0:
print("")
else:
print("负数")

执行以上代码输出结果为:

输入一个数字: 3
正数

我们也可以使用内嵌 if 语句来实现:

实例(Python 3.0+)

# Filename :test.py
# author by : docs.gechiui.com/w3school

# 内嵌 if 语句

num = float(input("输入一个数字: "))
if num >= 0:
if num == 0:
print("")
else:
print("正数")
else:
print("负数")

执行以上代码输出结果为:

输入一个数字: 0
零

Python if 语句 Python3 实例