Python Forum
how to get vairable to sort with list?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to get vairable to sort with list?
#1
analyst = list([304, 213, 175, 379, 572, 801, 630])

print(list(analyst))
print(sorted(analyst))

analyst[0] = "Monday "
analyst[1] = "Tuesday "
analyst[2] = "Wednesday "
analyst[3] = "Thursday "
analyst[4] = "Friday "
analyst[5] = "Saturday "
analyst[6] = "Sunday "

print(list(analyst))
print(sorted(analyst))

# i am trying to get two types of information, first the list from monday - sunday with numbers from each day
# the secound print i am trying to get the list with numbers sorted from lowest to highest and the variable with string sorted from lowest to highest
# i get the variable to go from a - z in order but i want them to follow the same order as the list
Reply


Messages In This Thread
how to get vairable to sort with list? - by DouTh - Jan-07-2019, 11:18 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  list.sort() returning None SmallCoder14 8 614 Mar-19-2024, 09:49 PM
Last Post: SmallCoder14
  Sort a list of dictionaries by the only dictionary key Calab 1 504 Oct-27-2023, 03:03 PM
Last Post: buran
Photo a.sort() == b.sort() all the time 3lnyn0 1 1,328 Apr-19-2022, 06:50 PM
Last Post: Gribouillis
  list sort() function bring backs None CompleteNewb 6 4,158 Mar-26-2022, 03:34 AM
Last Post: Larz60+
  [solved] Sort list paul18fr 5 2,904 Aug-18-2021, 06:34 AM
Last Post: naughtyCat
  Sort List of Lists by Column Nju 1 11,637 Apr-13-2021, 11:59 PM
Last Post: bowlofred
  How to sort os.walk list? Denial 6 11,598 Oct-10-2020, 05:28 AM
Last Post: Denial
  Converting to a list and sort tantony 6 3,247 Oct-07-2019, 03:30 PM
Last Post: perfringo
  List sort - alphanumeric? papsphilip 2 2,478 Oct-05-2019, 09:27 PM
Last Post: papsphilip
  syntax error on list.sort() jjordan33 3 3,224 Jul-10-2019, 04:57 PM
Last Post: jefsummers

Forum Jump:

User Panel Messages

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