Re: Looking for a programming resource for newbees

2006-04-21 Thread Evgeny
maybe How to Think Like a Computer Scientist: http://www.ibiblio.org/obp/thinkCSpy/ will help -- http://mail.python.org/mailman/listinfo/python-list

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

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