Python Tuple 元组 min()方法
Python Tuple 元组 min()方法
Python 元组 min() 函数返回元组中元素最小值。
语法
min()方法语法:
min(tuple)
参数
- tuple -- 指定的元组。
返回值
返回元组中元素最小值。
实例
以下实例展示了 min()函数的使用方法:
#!/usr/bin/python tuple1, tuple2 = (123, 'xyz', 'zara', 'abc'), (456, 700, 200) print "min value element : ", min(tuple1); print "min value element : ", min(tuple2);
以上实例输出结果如下:
min value element : 123 min value element : 200
相关文章
- Python 函数
- Python SMTP发送邮件
- Python 多线程
- Python 算法设计
- Python3 字典(Dictionary)
- Python3 迭代器
- Python sqrt() 函数
- Python os.chflags() 方法
- Python os.chown() 方法
- Python os.close() 方法
- Python os.closerange() 方法
- Python os.read() 方法
- Python os.renames() 方法
- Python os.stat() 方法
- Python center()方法
- Python splitlines()方法
- Python List append()方法
- Python 字典 Dictionary keys()方法
- Python 字典 Dictionary update()方法
- Python time tzset()方法