Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use sorted function

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how to use the sorted function, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.

Sorted (iterable, key=None, reverse=False) iterable-iterable object. Key-elements that are mainly used for comparison, with only one parameter, the specific parameter of the function is taken from the iterable object, specifying an element in the iterable object to sort. Reverse-collation, reverse = True descending, reverse = False ascending (default).

Print (sorted ([5,3,4,2,1]) # [1,2,3,4,5] default is ascending order

Descending arrangement

Print (sorted ([5,3,4,2,1], reverse=True)) # [5,4,3,2,1]

Sort arrays / dictionaries by keys

Array = [{"age": 20, "name": "a"}, {"age": 25, "name": "b"}, {"age": 10, "name": "c"}] array = sorted (array,key=lambda x name x ["age"]) print (array) # [{'age': 10,' name':'c'}, {'age': 20,' name': 'a'}, {'age': 25,' name':'b'}]

Multi-column sorting is sorted by age first, and by name when the age is the same.

Array = [{"age": 10, "name": "a"}, {"age": 25, "name": "b"}, {"age": 10, "name": "c"}] array = sorted (array,key=lambda x: (x ["age"], x ["name"]) print (array) # [{'age': 10,' name':'a'}, {'age': 10,' name':'c'}, {'age': 25 'name': 'b'}]

Sort strings-sort by ASCII

Str = "fgd" print (sorted (Str)) # ['dumped,' faded,'g'] Thank you for reading this article carefully. I hope the article "how to use the sorted function" shared by the editor will be helpful to you. At the same time, I hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report