Python 列表List len() 方法 Python 列表List cmp() 方法 Python 列表List max() 方法 Python 列表List len() 方法 #!/usr/bin/python list1, list2 = [123, 'xyz', 'zara'], [456, 'abc'] print "First list length : ", len(list1) print "Second list length : ", len(list2) Python 列表List cmp() 方法 Python 列表List max() 方法