python 求数组a 的最大值和最小值

>>> a=[1,2,3,4,5,6,7,8,98,9] >>> print(max(a)) 98 >>> print(min(a)) 1 >>>
相关文章
相关标签/搜索