incastle의 콩나물

python dictionary value를 기준으로 정렬하기, 이중 list의 특정 값 기준 본문

python

python dictionary value를 기준으로 정렬하기, 이중 list의 특정 값 기준

incastle 2019. 4. 17. 00:48

dictionary value를 기준

1. sorted(result, key=lambda x : result[x], reverse=True)

 

2. 

Key로 Value얻기(get)

 

sorted(result, key=result.get, reverse=True)

 

list의 특정 value를 기준

sorted(temp_list, key=lamda x:x[원하는 값])

Comments