Discuss / Python / 嗯嗯

嗯嗯

Topic source

def findMinAndMax(L):
if L: L_max=max(L) L_min=min(L) return (L_min, L_max) else: return(None, None)


  • 1

Reply