Python 程序:寻找列表中最小数字

写一个 Python 程序,用一个实际例子找到列表中最小的数字。

Python min 函数返回列表中的最小值。

# Python Program to find Smallest Number in a List 

a = [10, 50, 60, 80, 20, 15]

print("The Smallest Element in this List is : ", min(a))

Python 最小列表号输出

The Smallest Element in this List is : 10

这个 python 程序同上。但是这次,我们允许用户输入列表的长度。接下来,我们使用 For Loop 给 Python 列表添加数字。

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))

Python 排序函数按照升序对列表元素进行排序。接下来,我们使用索引位置 0 来打印列表中的第一个元素。

a = [100, 50, 60, 80, 20, 15]

a.sort()
print("The Smallest Element in this List is : ", a[0])

Python 最小列表号使用排序函数输出

The Smallest Element in this List is : 20

这个 Python 列表最小的数字和上面一样。但是这次,我们允许用户输入他们自己的列表项。

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])

Python 最小列表号输出

Please enter the Total Number of List Elements: 6
Please enter the Value of 1 Element : 7
Please enter the Value of 2 Element : 9
Please enter the Value of 3 Element : 22
Please enter the Value of 4 Element : 90
Please enter the Value of 5 Element : 5
Please enter the Value of 6 Element : 67
The Smallest Element in this List is :  5

在这个程序中,我们没有使用任何内置函数,比如 sort,或者 min 函数。

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 = NumList[0]    
for j in range(1, Number):
    if(smallest > NumList[j]):
        smallest = NumList[j]
        position = j

print("The Smallest Element in this List is : ", smallest)
print("The Index position of the Smallest Element is : ", position)

Python 列表输出中最小的数字

Please enter the Total Number of List Elements: 5
Please enter the Value of 1 Element : 223
Please enter the Value of 2 Element : 43
Please enter the Value of 3 Element : 22
Please enter the Value of 4 Element : 67
Please enter the Value of 5 Element : 54
The Smallest Element in this List is :  22
The Index position of the Smallest Element is :  2

从上面的 Python 程序中查找列表示例中的最小数字,用户插入的值是
NumList[5] = {223,43,22,67,54 }
minist = NumList[0]= 223

第一次迭代–对于范围(1,5)中的 1–条件为真
因此,它开始在循环内执行 If 语句,直到条件失败。

如果 for 循环内的(最小> NumList[j])为真,因为(223 > 43)
最小= NumList[1]
最小= 43
位置= 1

第二次迭代:对于范围(1,5)中的 2–条件为真
If(最小>NumList[2])=(43>22)–条件为真
最小= NumList[2]
最小= 22
位置= 2T7】

第三次迭代:对于范围(1,5)中的 3–条件为真
如果(最小>NumList【3】)=(22>67)–条件为假
最小= 22
位置= 2

第四次迭代:对于范围(1,5)中的 4–条件为真
如果(22>54)–条件为假
最小= 22
位置= 2

第五次迭代:对于范围(1,5)中的 5–条件为假
因此,它退出循环。

原创文章,作者:RMTYR,如若转载,请注明出处:https://www.506064.com/n/126811.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
RMTYR的头像RMTYR
上一篇 2024-10-03 23:13
下一篇 2024-10-03 23:13

相关推荐

  • Python中which模式的使用场景

    一、which模式简介 which模式是Unix和Linux操作系统中常见的命令行工具,用于查找某个命令或程序在系统中的位置。该命令通过查询PATH环境变量中所列出的目录,找出第一…

    编程 2024-10-04
  • JavaImage类:如何在Java中处理和操作图像

    一、Java中处理和操作图像的基础知识 在Java中处理和操作图像,我们需要了解基础的图像知识。图像在计算机中是由像素组成的,每个像素都有一个颜色值用于表示该像素的颜色。颜色值通常…

    编程 2024-10-12
  • 如何在Linux上卸载Nginx

    一、Linux卸载软件 Linux作为一种常见的操作系统,对于软件的卸载十分简单。通常情况下,我们可以通过命令行的方式进行卸载。以下为卸载nginx的命令: sudo apt-ge…

    编程 2024-10-10
  • 从多个方面深入理解Java Immutable

    一、什么是Java Immutable Java Immutable是指不可改变的对象,一旦创建之后就不能被改变。Immutable可以提高并发程序的安全性和性能,因为多个线程同时…

    编程 2024-11-26
  • 如何让python不要省略显示的简单介绍

    本文目录一览: 1、python 3 的list如何设置保证列表显示全部内容,而不是仅显示部分数据,其他用省略号代替 2、python 如何把一段语句屏蔽,但是又不删除 3、pyt…

    编程 2024-10-24
  • 使用Python编写自动化Android设备测试ADB命令

    Android Debug Bridge (adb)是一个旨在帮助开发人员进行Android设备测试和调试的命令行工具。在本文中,我们将介绍如何使用Python编写ADB命令以进行…

    编程 2024-10-03
  • jsp程序员待遇(JAVA JSP程序招聘)

    本文目录一览: 1、JSP程序员的一般工资是多少? 2、Java程序员工资待遇怎么样? 3、程序员的薪资待遇怎么样? 4、java程序员工资多少 5、成都java高级程序员工资收入…

  • php5官网,PHP56

    本文目录一览: 1、如何装一个支持php编程环境? 2、PHP是什么 3、VISTA下安装PHP5的问题,很怪异,(高手来拿高分) 4、php+apache配置问题,网上回答都一样…

    编程 2024-11-28
  • ettercap教程详解

    一、coinmarketcap教程 CoinMarketCap是一个数字资产市场分析平台,提供各种信息,如交易对、市值、价格、交易所等等。以下是使用Python对其进行爬取并对数据…

    编程 2024-11-05
  • 打造流畅动态文字展示——typed.js

    一、typed.js是什么? Typed.js 是一个轻量级的、易于使用的JavaScript库,它可以让你为自己的网页和应用程序增加流畅且自然的动态文字展示效果。既可以自动执行,…

    编程 2024-10-04

发表回复

登录后才能评论