Python List min()方法
Python List min()方法
min() 方法返回列表元素中的最小值。
语法
min()方法语法:
min(list)
参数
- list -- 要返回最小值的列表。
返回值
返回列表元素中的最小值。
实例
以下实例展示了 min()函数的使用方法:
#!/usr/bin/python list1, list2 = [123, 'xyz', 'zara', 'abc'], [456, 700, 200] print "min value element : ", min(list1); print "min value element : ", min(list2);
以上实例输出结果如下:
min value element : 123 min value element : 200
相关文章
- Python 教程
- Python 环境搭建
- Python pass 语句
- Python OS 文件/目录方法
- Python 面向对象
- Python 网络编程
- Python2 与 Python3 版本区别
- Python 算法类
- Python MongoDB 数据库连接 - PyMongo 驱动
- Python abs() 函数
- Python File close() 方法
- Python File readline() 方法
- Python os.chflags() 方法
- Python os.isatty() 方法
- Python os.rmdir() 方法
- Python os.tmpnam() 方法
- Python os.write() 方法
- Python capitalize()方法
- Python isalpha()方法
- Python lstrip()方法