Python Tuple 元組 max()方法
Python Tuple 元組 max()方法
Python 元組 max() 函數(shù)返回元組中元素最大值。
語(yǔ)法
max()方法語(yǔ)法:
max(tuple)
參數(shù)
- tuple -- 指定的元組。
返回值
返回元組中元素最大值。
實(shí)例
以下實(shí)例展示了 max()函數(shù)的使用方法:
#!/usr/bin/python tuple1, tuple2 = (123, 'xyz', 'zara', 'abc'), (456, 700, 200) print "Max value element : ", max(tuple1); print "Max value element : ", max(tuple2);
以上實(shí)例輸出結(jié)果如下:
Max value element : zara Max value element : 700
相關(guān)文章
- Python 字典 Dictionary
- Python 文件I/O
- Python 算法設(shè)計(jì)
- Python 遞歸
- Python 圖算法
- Python floor() 函數(shù)
- Python randrange() 函數(shù)
- Python File flush() 方法
- Python File seek() 方法
- Python os.access() 方法
- Python os.chroot() 方法
- Python os.close() 方法
- Python os.isatty() 方法
- Python os.makedirs() 方法
- Python os.ttyname() 方法
- Python expandtabs()方法
- Python 字典 Dictionary pop() 方法
- Python Tuple 元組 len()方法
- Python time gmtime()方法
- Python time mktime()方法