Re: An isalpha() that accepts underscores as well

2006-02-26 Thread Zajcev Evgeny
egbert <[EMAIL PROTECTED]> writes: > The string method isalpha() returns True when all characters in the > string are alphabetic. Unfortunately the underscore is not alphabetic. > A function that does what I need is: > > def alfa_(w): > return "".join(w.split("_")).isalpha() > > but for the ki

Re: An isalpha() that accepts underscores as well

2006-02-26 Thread Zajcev Evgeny
"Fuzzyman" <[EMAIL PROTECTED]> writes: > Zajcev Evgeny wrote: >> egbert <[EMAIL PROTECTED]> writes: >> >> > The string method isalpha() returns True when all characters in the >> > string are alphabetic. Unfortunately the underscore is n