ssecorp wrote:

if i want to make a string downcase, is upper().swapcase() the onyl
choice?

what you're asking for is usually called "lower case":

    http://en.wikipedia.org/wiki/Lower_case

and the corresponding string method method is called "lower":

    >>> "HELLO".lower()
    'hello'

> there is no downer() ?

no, that would be no fun at all.

</F>

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to