I have a set
set(['booklet', '4 sheets', '48 sheets', '12 sheets'])
After sorting I want it to look like
4 sheets,
12 sheets,
48 sheets,
booklet
Any idea please
|
|
|
Short and sweet:
This version:
If you want printed output exactly as described in your example, then:
|
|||
|
|
|
Jeff Atwood talks about natural sort and gives an example of one way to do it in Python. Here is my variation on it:
Use like this:
Output:
One advantage of this method is that it doesn't just work when the strings are separated by spaces. It will also work for other separators such as the period in version numbers (for example 1.9.1 comes before 1.10.0). |
|||||
|
|
A simple way is to split up the strings to numeric parts and non-numeric parts and use the python tuple sort order to sort the strings.
|
|||
|
|
|
||||
|
|
|
Based on SilentGhost's answer:
|
||||
|
|
|
sets are inherently un-ordered. You'll need to create a list with the same content and sort that. |
|||||||||
|