| |||||||||||||
| |||||||||||||
Python collections - mutable and imutable
Should you use a list or a tuple ... or perhaps a dictionary to store a collection of objects in your Python program? To help you make the decision, think whether you need to be able to modify the collection after you've created it (mutable) or not (immutable), and whether you want it to be indexed in order, or not.
Those two answers should lead to your collection type:
If you want an immutable unordered collection (the empty box in my table), use a dictionary. And when you're initially creating the collection, use ( ), [ ] or { } as shown in the table. Always use [ and ] to reference member elements after the initial creation - Python does it like that to render any code you write polymorphic ... i.e. to be common code that will work whatever the collection type. (written 2006-11-29 17:15:54) Associated topics are indexed under Y104 - Python - Lists and TuplesY107 - Python - Dictionaries
Some other Articles
It's the 1st, not the 1nd 1rd or 1th.Plain Ole nice pictures Improving the historic town of Melksham Python security - trouble with input Python collections - mutable and imutable Splitting Pythons in Bradford Christmas in November Coming from London to Melksham by train for a course What happened at Geekmas Python and the Magic Roundabout 1638 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 at 50 posts per pageThis is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price. Link to Ezine home page (for reading). Link to Blogging home page (to add comments). |
| ||||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho | |||||||||||||