Python Forum
How does a set in python store the elements?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How does a set in python store the elements?
#1
I am coming learning python after working with c++ for a few years. In c++ when you insert into a set it orders the elements, I can't figure out why in python sometimes the set will order the elements and sometimes it does not. Here are a few examples:

a = set([3, 2, 1])
print(a)
prints: {1, 2, 3}

a = set([1, 2, 3])
print(a)
prints: {1, 2, 3}

a = set([5, 7, 9])
print(a)
prints: {9, 5, 7}

a = set([7, 9, 5])
print(a)
prints: {9, 5, 7}

a = set([5, 3, 7])
print(a)
prints: {3, 5, 7}

I don't know what's going on here, I know you can sort the set using sorted() but the way it originally stores the information doesn't make any sense to me.
Reply


Messages In This Thread
How does a set in python store the elements? - by idknuttin - Jul-10-2020, 08:04 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to remove some elements from an array in python? gohanhango 9 11,586 Nov-28-2023, 08:35 AM
Last Post: Gribouillis
  ValueError: Length mismatch: Expected axis has 8 elements, new values have 1 elements ilknurg 1 7,937 May-17-2022, 11:38 AM
Last Post: Larz60+
  Sorting Elements via parameters pointing to those elements. rpalmer 3 3,427 Feb-10-2021, 04:53 PM
Last Post: rpalmer
  Reading blob data from database by python and store it in .zip format Adityasi 2 9,631 Nov-18-2019, 05:22 PM
Last Post: ibreeden
  How do I install apps from google play store? using python + selenium.. mongo 0 2,860 Aug-05-2019, 12:41 AM
Last Post: mongo
  Store a python list of lists in a database to use for searches later on klllmmm 3 4,147 Jun-20-2019, 07:54 AM
Last Post: buran
  Receive Serial Data and store in different Variables in Python jenkins43 5 7,359 Dec-28-2018, 01:33 PM
Last Post: snippsat
  Rearranging elements in Python Nirmal 10 6,896 Nov-23-2018, 12:05 PM
Last Post: Nirmal
  How to sum up the elements of an integer using python split/join? mohanraj1986 5 4,770 Aug-27-2018, 09:13 AM
Last Post: perfringo
  Python simple store inventory system. 2skywalkers 3 11,850 Aug-19-2018, 06:12 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

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