Python if 语句
Python 3 教程
· 2019-02-12 10:13:54
以下实例通过使用 if...elif...else 语句判断数字是正数、负数或零:
实例(Python 3.0+)
# Filename : test.py
# author by : www.codercto.com
# 用户输入数字
num = float(input("输入一个数字: "))
if num > 0:
print("正数")
elif num == 0:
print("零")
else:
print("负数")
执行以上代码输出结果为:
输入一个数字: 3 正数
我们也可以使用内嵌 if 语句来实现:
实例(Python 3.0+)
# Filename :test.py
# author by : www.codercto.com
# 内嵌 if 语句
num = float(input("输入一个数字: "))
if num >= 0:
if num == 0:
print("零")
else:
print("正数")
else:
print("负数")
执行以上代码输出结果为:
输入一个数字: 0 零
点击查看所有 Python 3 教程 文章: https://www.codercto.com/courses/l/10.html
Dynamic Programming
Richard Bellman / Dover Publications / 2003-03-04 / USD 19.95
An introduction to the mathematical theory of multistage decision processes, this text takes a "functional equation" approach to the discovery of optimum policies. The text examines existence and uniq......一起来看看 《Dynamic Programming》 这本书的介绍吧!