写一个 Python 程序,用一个实际例子找出列表中最大和最小的数字。
Python 程序查找列表中最大和最小的数字示例 1
这个 python 程序允许用户输入列表的长度。接下来,我们使用 For 循环向列表中添加数字。这里, Python 中的 min 和 max 函数返回一个列表中的最小和最大数字或最小和最大值。
# Python Program to find Largest and Smallest Number in a List
NumList = []
Number = int(input("Please enter the Total Number of List Elements: "))
for i in range(1, Number + 1):
value = int(input("Please enter the Value of %d Element : " %i))
NumList.append(value)
print("The Smallest Element in this List is : ", min(NumList))
print("The Largest Element in this List is : ", max(NumList))
Python 最大和最小列表号输出
Please enter the Total Number of List Elements: 5
Please enter the Value of 1 Element : 50
Please enter the Value of 2 Element : 45
Please enter the Value of 3 Element : 33
Please enter the Value of 4 Element : 78
Please enter the Value of 5 Element : 66
The Smallest Element in this List is : 33
The Largest Element in this List is : 78
Python 程序查找列表中最大和最小的数字示例 2
Python 排序函数按照升序对列表元素进行排序。接下来,我们使用索引位置 0 打印列表中的第一个元素,最后一个索引位置打印列表中的最后一个元素。
# Python Program to find Largest and Smallest Number in a List
NumList = []
Number = int(input("Please enter the Total Number of List Elements: "))
for i in range(1, Number + 1):
value = int(input("Please enter the Value of %d Element : " %i))
NumList.append(value)
NumList.sort()
print("The Smallest Element in this List is : ", NumList[0])
print("The Largest Element in this List is : ", NumList[Number - 1])
Python 程序查找列表中最大和最小的数字示例 3
在这个程序中,我们没有使用任何内置功能,比如排序、最大或最小功能。
# Python Program to find Largest and Smallest Number in a List
NumList = []
Number = int(input("Please enter the Total Number of List Elements: "))
for i in range(1, Number + 1):
value = int(input("Please enter the Value of %d Element : " %i))
NumList.append(value)
smallest = largest = NumList[0]
for j in range(1, Number):
if(smallest > NumList[j]):
smallest = NumList[j]
min_position = j
if(largest < NumList[j]):
largest = NumList[j]
max_position = j
print("The Smallest Element in this List is : ", smallest)
print("The Index position of Smallest Element in this List is : ", min_position)
print("The Largest Element in this List is : ", largest)
print("The Index position of Largest Element in this List is : ", max_position)
Python 最大和最小列表号输出
Please enter the Total Number of List Elements: 5
Please enter the Value of 1 Element : 40
Please enter the Value of 2 Element : 60
Please enter the Value of 3 Element : 20
Please enter the Value of 4 Element : 11
Please enter the Value of 5 Element : 50
The Smallest Element in this List is : 11
The Index position of Smallest Element in this List is : 3
The Largest Element in this List is : 60
The Index position of Largest Element in this List is : 1
从上面的 Python 程序中找到列表输出中最大和最小的数字,用户插入的值是 NumList[5] = {40,60,20,11,50} 最小=最大= NumList[0] = 40
第一次迭代–对于范围(1,5)中的 1–条件为真 因此,它开始在循环内执行 If 语句,直到条件失败。
如果循环的内的(最小>数值列表【j】为假,因为(40 > 60) 最小= 40 位置= 1
If(最大< NumList[j]) inside the for loop is True because (40 < 60) 最大= 60 位置= 1
第二次迭代:对于范围(1,5)中的 2–条件为真 If(40>20)–条件为真 最小= 20 位置= 2
如果(60 < 20) – Condition False 最大= 60 == >不变 位置= 1 == >不变
第三次迭代:对于范围(1,5)中的 3–条件为真 如果(20>11)–条件为真 最小= 11 位置= 3
若(60 < 11) – Condition False 最大= 60 位置= 1
第四次迭代:对于范围(1,5)中的 4–条件为真 如果(11>50)–条件为假 最小= 11 位置= 3
如果(60 < 11) – Condition False 最大= 60 位置= 1
第五次迭代:对于范围(1,5)中的 5–条件为假 因此,它退出循环。