786 snippets from 1631 members, and growing!
|
login
|
join
about
bytebin
members
tags
snippets
join
Snippets
Submit a Snippet
Search Snippets
New Snippets
Top Snippets
Top Tags
PHP
(142)
JavaScript
(125)
Java
(66)
VBSCRIPT
(58)
String
(44)
CSS
(31)
File
(29)
CSharp
(28)
HTML
(27)
mysql
(27)
C
(24)
VB.NET
(24)
python
(24)
CPlusPlus
(23)
groovy
(23)
New Snippets
Detect Adblock
Concatenar campos...
fopen
Unique random key
get number of cha...
Find a File
Find a Directory
List Directory
File uploading in...
Get Values from C...
Venture Capital Jobs
New Members
mcheung63
cicero
mycodeofshailendra
nostromo
KennethCC
me
jamesmcm
Can
Kelmi
ysg
Top Members
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
Home
/
Snippets
/
Return a list of unique items of a list
/
Comments
Return a list of unique items of a list
Snippet Menu
Revisions
Comments
Related Snippets
Add to Favorites
Email Snippet
Download Snippet
Print Snippet
Blog Snippet
snippet
|
revisions
|
comments
|
related
|
Add to Favorites
|
email
download
|
print
|
blog it
New Comment
set() in Python 2.4
Tue. Sep. 12th, 2006 10:02 PM
nil_ptr
If you're using Python 2.4, just use set objects.
The set constructor is much faster, and (even better!) you can do set operations (such as subtraction) on set objects.
foo = [1,2,2,3,4,5] s = set( foo )
Reply
but..
Sat. Oct. 28th, 2006 8:23 PM
sk1p
set is unordered...
Reply
New Comment
The set constructor is much faster, and (even better!) you can do set operations (such as subtraction) on set objects.