Python 元组tuple max() 方法 Python Tuple len() 方法 Python 元组tuple min() 方法 Python 元组tuple max() 方法 #!/usr/bin/python tuple1, tuple2 = (123, 'xyz', 'zara', 'abc'), (456, 700, 200) print "Max value element : ", max(tuple1) print "Max value element : ", max(tuple2) Python Tuple len() 方法 Python 元组tuple min() 方法