Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リスト内の2つの数値を合計し、その合計に基づいて並べ替えた後、並べ替える必要のあるリストがあります。リストは以下のとおりです。アドバイスをいただければ幸いです。
myList = [['X5QR76', 3, 7], ['G77652', 1, 5], ['GT1885', 5, 2], ['WB2013', 5, 2], ['FINBOX', 2, 9]]
sorted(myList,key=lambda x:x[1]+x[2])