Python Forum
Sorting lists prioritizing letters before numbers
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sorting lists prioritizing letters before numbers
#1
Hi guys,

I'm a very new coder so your help means a lot.

I'm trying to sort a list which unsorted might look like this:

001 123
001 Beta 123
402 123
403 123
402 CxR 123
192 UqS 123
001 Alpha 123
309 223
001 038
007 Bond 123

I want to sort this list so that the first three characters are sorted by number, but after that letters are prioritized in sorting. Thus i want the code to return the list sorted like so:

001 Alpha 123
001 Beta 123
001 038
001 123
007 Bond 123
192 UqS 123
309 223
402 CxR 123
402 123
403 123

How do i sort a list like so?

Thanks, guys.
Reply


Messages In This Thread
Sorting lists prioritizing letters before numbers - by Ratherfastmofo - Nov-21-2018, 08:29 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Need help with sorting lists as a beginner Realist1c 1 793 Apr-25-2023, 04:32 AM
Last Post: deanhystad
  sorting a list of lists by an element leapcfm 3 1,952 Sep-10-2021, 03:33 PM
Last Post: leapcfm
  Using my REPL to bisect numbers and lists with classes (PyBite #181) Drone4four 2 2,100 Sep-24-2020, 01:47 PM
Last Post: Drone4four
  Split dict of lists into smaller dicts of lists. pcs3rd 3 2,469 Sep-19-2020, 09:12 AM
Last Post: ibreeden
  sorting list of lists pframe 5 27,256 Apr-17-2020, 09:31 PM
Last Post: Larz60+
  Sorting numbers from smallest to biggest Dokugan 2 2,277 Apr-14-2020, 09:24 PM
Last Post: Larz60+
  Generate unique random numbers from different lists Takeshio 5 3,846 May-24-2019, 07:29 PM
Last Post: ichabod801
  Print Numbers starting at 1 vertically with separator for output numbers Pleiades 3 3,795 May-09-2019, 12:19 PM
Last Post: Pleiades
  Sorting a copied list is also sorting the original list ? SN_YAZER 3 3,156 Apr-11-2019, 05:10 PM
Last Post: SN_YAZER
  sort lists of lists with multiple criteria: similar values need to be treated equal stillsen 2 3,339 Mar-20-2019, 08:01 PM
Last Post: stillsen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020