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()方法