快速问题,更有效的查找长列表中的最小数字(浮点数)(10000+元素)
是吗
min(mylist)
要么
mylist.sort()
然后回来
mylist[0]
或者是其他东西...
谢谢!
python list
list ×1
python ×1