Python Forum
HELP!!! string logical sorting
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
HELP!!! string logical sorting
#1
sorry for my bad english,
i have this problem :
1
2
3
4
thelist = ["t9","t8","t11","t10"]
print(thelist)
thelist.sort()
print(thelist)
Output:
['t9', 't8', 't10', 't11'] ['t10', 't11', 't8', 't9']
expected output is :
Output:
['t8', 't9', 't10', 't11']
i google for [python string "logical" "sorting"] but found nothing
please help me!!!
Reply


Messages In This Thread
HELP!!! string logical sorting - by kucingkembar - Aug-07-2024, 10:35 PM
RE: HELP!!! string logical sorting - by deanhystad - Aug-08-2024, 02:45 AM
RE: HELP!!! string logical sorting - by Pedroski55 - Aug-08-2024, 08:24 AM
RE: HELP!!! string logical sorting - by DeaD_EyE - Aug-08-2024, 12:03 PM
RE: HELP!!! string logical sorting - by Pedroski55 - Aug-08-2024, 07:26 PM
RE: HELP!!! string logical sorting - by Gribouillis - Aug-09-2024, 06:49 AM
RE: HELP!!! string logical sorting - by Gribouillis - Aug-09-2024, 10:04 AM
RE: HELP!!! string logical sorting - by DeaD_EyE - Aug-09-2024, 10:07 AM
RE: HELP!!! string logical sorting - by snippsat - Aug-09-2024, 07:17 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with Logical error processing List of strings dmc8300 3 1,869 Nov-27-2022, 04:10 PM
Last Post: Larz60+
  Greedy algorithms on logical problems Opensourcehacker 0 2,144 Nov-22-2020, 05:12 PM
Last Post: Opensourcehacker
  Unable to bit shift and logical OR bytes and ints? MysticLord 7 10,050 Sep-01-2020, 03:31 PM
Last Post: deanhystad
  Basic logical errors cpopescu 3 2,962 Jun-03-2020, 11:30 AM
Last Post: menator01
  Python logical operator AND rasec70 4 3,729 May-07-2020, 03:40 PM
Last Post: pyzyx3qwerty
  parsing logical expression with pyparsing palo173 2 6,645 May-13-2019, 09:22 AM
Last Post: palo173
  Sorting a copied list is also sorting the original list ? SN_YAZER 3 5,696 Apr-11-2019, 05:10 PM
Last Post: SN_YAZER
  Sorting list of lists with string and int Otbredbaron 6 5,616 May-07-2018, 06:04 AM
Last Post: buran

Forum Jump:

User Panel Messages

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