Sets: that is lists without order or repetition.
May be used everywhere lists are used... because they rely on
them.
| Method Summary |
| |
__init__(self,
list)
|
| |
__add__(self,
other)
|
| |
__cmp__(self,
other)
|
| |
__delitem__(self,
key)
|
| |
__delslice__(self,
low,
high)
|
| |
__getattr__(self,
name)
|
| |
__getitem__(self,
index)
|
| |
__getslice__(self,
low,
high)
|
| |
__len__(self)
|
| |
__radd__(self,
other)
|
| |
__repr__(self)
|
| |
__setitem__(self,
index,
value)
|
| |
__str__(self)
|
| |
__sub__(self,
other)
|
| |
append(self,
member)
|
| |
copy(self)
|
| |
dup(self)
|
| |
first(self)
|
| |
index(self,
index)
|
| |
remove(self,
v)
|
| |
s_append(self,
member)
|
| |
s_extend(self,
other)
|
| |
sort(self)
|