Help please, why doesn't it show the next input?

Dave Angel davea at davea.name
Wed Sep 11 16:32:17 EDT 2013


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





More information about the Python-list mailing list