python实现min()函数

def min(x):
     least=x[0]

     for i in x:
          if i

你可能感兴趣的:(python)