Re: [Tutor] lowercase, uppercase

2005-12-10 Thread Python
On Sat, 2005-12-10 at 16:56 -0600, david wrote: > i am thinking that string.upper and string.lower may be what you are > looking for. >>> x = 'This is Some Mixed CaSe TExt' >>> x.lower() 'this is some mixed case text' >>> x.upper() 'THIS IS SOME MIXED CASE TEXT' Unless you are using a very old ve

Re: [Tutor] lowercase, uppercase

2005-12-10 Thread david
i am thinking that string.upper and string.lower may be what you are looking for.   - Original Message - From: vikas mohan To: david Cc: tutor@python.org Sent: Saturday, December 10, 2005 7:19 AM Subject: Re: [Tutor] bnf Hi again   I have a question re