菜鸟教程 -- 学的不仅是技术,更是梦想!

Python 3 教程
Python3 教程 Python3 简介 Python3 环境搭建 Python3 VScode Python3 基础语法 Python3 基本数据类型 Python3 数据类型转换 Python3 解释器 Python3 注释 Python3 运算符 Python3 数字(Number) Python3 字符串 Python3 列表 Python3 元组 Python3 字典 Python3 集合 Python3 条件控制 Python3 循环语句 Python3 编程第一步 Python3 推导式 Python3 迭代器与生成器 Python3 with Python3 函数 Python3 lambda Python3 装饰器 Python3 数据结构 Python3 模块 Python __name__ Python3 输入和输出 Python3 File Python3 OS Python3 错误和异常 Python3 面向对象 Python3 命名空间/作用域 Python 虚拟环境的创建 Python 类型注解 Python3 标准库概览 Python3 实例 Python 测验

Python3 高级教程

Python3 正则表达式 Python3 CGI编程 Python3 MySQL(mysql-connector) Python3 MySQL(PyMySQL) Python3 网络编程 Python3 SMTP发送邮件 Python3 多线程 Python3 XML 解析 Python3 JSON Python3 日期和时间 Python3 内置函数 Python3 MongoDB Python3 urllib Python uWSGI 安装配置 Python3 pip Python3 operator Python math Python requests Python random Python OpenAI Python 有用的资源 Python AI 绘画 Python statistics Python hashlib Python 量化 Python pyecharts Python selenium 库 Python 爬虫 Python Scrapy 库 Python Markdown Python sys 模块 Python Pickle 模块 Python subprocess 模块 Python queue 模块 Python StringIO 模块 Python logging 模块 Python datetime 模块 Python re 模块 Python csv 模块 Python threading 模块 Python asyncio 模块 Python PyQt Python for 循环 Python while 循环
(追記) (追記ここまで)

Python3 List max()方法

Python3 列表 Python3 列表


描述

max() 方法返回列表元素中的最大值。

语法

max()方法语法:

max(list)

参数

  • list -- 要返回最大值的列表。

返回值

返回列表元素中的最大值。

实例

以下实例展示了 max()函数的使用方法:

实例

#!/usr/bin/python3

list1, list2 = ['Google', 'Runoob', 'Taobao'], [456, 700, 200]

print ("list1 最大元素值 : ", max(list1))
print ("list2 最大元素值 : ", max(list2))

以上实例输出结果如下:

list1 最大元素值 : Taobao
list2 最大元素值 : 700

Python3 列表 Python3 列表

AI 思考中...

2 篇笔记 写笔记

  1. #0

    teddy0820

    154***[email protected]

    52

    当列表中的个元素都是字符串的时候,max 函数的比较原理:

    list1 = ['我','爱','python']
    list2 = [100, 200, 300]
    print( 'list1的最大值:', max(list1) )
    print( 'list2的最大值:', max(list2) )
     
    print( id(list1[0]) )
    print( id(list1[1]) )
    print( id(list1[2]) )
    print('我' > '爱')
    print('爱' > 'python')
    print('我' > 'python')

    输出结果为:

    list1的最大值: 爱
    list2的最大值: 300
    95966224
    100598176
    95751008
    False
    True
    True

    可以看出列表中元素为字符串的时候,max 函数的比较是根据 id 的大小来判断的。

    max 函数的其他比较方法可以参考数字章节的 max 函数笔记

    teddy0820

    154***[email protected]

    8年前 (2018年03月28日)
  2. #0

    叫老王吧

    268***[email protected]

    61

    当用 max() 函数当比较容器类型中的列表或者元组数据类型时,当其中的元素全部为数字类型时,直接根据值的大小比较。当其中的元素全部为字符串类型(string)时,则比较的是每个字符串元素的第一个字符的 ASCII 的大小。如果列表或者元组中的元素为数字类型和字符串类型混杂时,则无法比较。

    list1 = ['我最','爱学习','python']
    print( 'list1 的最大值:', max(list1)) # list1 的最大值: 爱学习
    print(ord(list1[0][0])) # ord('我') >>> 25105
    print(ord(list1[1][0])) # ord('爱') >>> 29233
    print(ord(list1[2][0])) # ord('p') >>> 112

    同理,调用 min() 函数比较时原理也是一样的。

    叫老王吧

    268***[email protected]

    7年前 (2019年10月12日)

点我分享笔记

  • 昵称 (必填)
  • 邮箱 (必填)
  • 引用地址

AltStyle によって変換されたページ (->オリジナル) /