On 11/9/2013 15:31, William Bryant wrote: > @Dave Angel > > What is .lower() ? It is a method on the str class.
You could teach yourself. At the interpreter prompt, type
>>>> help("test response".lower)
Or on the web:
http://docs.python.org/2/library/stdtypes.html#str.lower
There are lots of other interesting methods in the str class, listed on
that section of that page.
--
DaveA
--
https://mail.python.org/mailman/listinfo/python-list
