python获取列表中的最大值
其实python提供了内置的max函数,直接调用即可。
输出 99999
list=[1,2,3,5,4,6,434,2323,333,99999]
print "max of list is ",
print max(list)
输出 99999