Aug. 30, 2005
6 p.m.
Ron Adam wrote:
For cases where single values are desired, attribues could work.
Slicing: line = line.partition(';').head line = line.partition('#').head
But it gets awkward as soon as you want more than one.
sep, port = host.partition(':').head, host.partition(':').sep
You can do both: make partition() return a sequence with attributes, similar to os.stat(). However, I would call the attributes "before", "sep", and "after". Shane