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
"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