[EMAIL PROTECTED] (Alex Martelli) wrote in
news:[EMAIL PROTECTED]:
> Aahz <[EMAIL PROTECTED]> wrote:
>> I would agree with people who claim
>> that you should memorize most of the built-in functions (which is
>> precisely why there is a high barrier to adding more built-in
>> functions).
>
> I
[EMAIL PROTECTED] (Alex Martelli) wrote in
news:[EMAIL PROTECTED]:
> Martin Durkin <[EMAIL PROTECTED]> wrote:
>...
>> >>>>>> def rev(x):
>> >>> mylist = []
>> >>> for char in x:
>> &g
Duncan Booth <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]:
> Martin Durkin <[EMAIL PROTECTED]> wrote:
>
>>>>>> def rev(x):
>>> mylist = []
>>> for char in x:
>>> mylist.append(char)
ptn <[EMAIL PROTECTED]> wrote in news:1182997438.541012.54100
@o61g2000hsh.googlegroups.com:
>
def rev(x):
> mylist = []
> for char in x:
> mylist.append(char)
> mylist.reverse()
> for letter in mylist:
> print