Re: [Tutor] string case manipulation in python 3.x

2010-11-28 Thread Steven D'Aprano
Rance Hall wrote: I need to do some case manipulation that I don't see in the documented string functions. I want to make sure that user input meets a certain capitalization scheme, for example, if user input is a name, then the first letter of each word in the name is upper case, and the rest a

Re: [Tutor] string case manipulation in python 3.x

2010-11-27 Thread Wayne Werner
On Sat, Nov 27, 2010 at 10:55 PM, Rance Hall wrote: > I need to do some case manipulation that I don't see in the documented > string functions. > > I want to make sure that user input meets a certain capitalization > scheme, for example, if user input is a name, then the first letter of > each w

Re: [Tutor] string case manipulation in python 3.x

2010-11-27 Thread Hugo Arts
On Sun, Nov 28, 2010 at 5:55 AM, Rance Hall wrote: > I need to do some case manipulation that I don't see in the documented > string functions. > > I want to make sure that user input meets a certain capitalization > scheme, for example, if user input is a name, then the first letter of > each wor

[Tutor] string case manipulation in python 3.x

2010-11-27 Thread Rance Hall
I need to do some case manipulation that I don't see in the documented string functions. I want to make sure that user input meets a certain capitalization scheme, for example, if user input is a name, then the first letter of each word in the name is upper case, and the rest are lower. I know ho