[ML] python list sort 파이썬 리스트 정렬 def myFunc(e): return len(e) cars = ['Ford', 'Mitsubishi', 'BMW', 'VW'] cars.sort(reverse=True, key=myFunc) key의 함수 return 순서로 정렬,reverse는 생략가능 Helloworld!/Machine Learning 2018. 9. 17. 21:18