[Python-ideas] List Revolution

Christopher King g.nius.ck at gmail.com
Sun Sep 11 00:11:48 CEST 2011


I think there is some confusion about my idea (I didn't intend it as a joke,
but I was unsure, I was really surprised when Guido endorsed. I think people
have been thinking that my idea was as follows:
>>> items=['a', 'b', 'c']
>>> items.first
'a'
>>> items.second
'b'
>>> items.third
'c'
It is *not* that. I would not want it to be in words. That would be dumb
what my idea was was this:
>>> items=['a', 'b', 'c']
>>> items[1]
'a'
>>> items[2]
'b'
>>> items[3]
'c'
I'm not sure if this one is good, but if not, I'm sure you we come up with
another line of jokes (I like jokes, so its alright.)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-ideas/attachments/20110910/850b29b3/attachment.html>


More information about the Python-ideas mailing list