Re: [Tutor] numbers from a name

2005-09-25 Thread ZIYAD A. M. AL-BATLY
On Sun, 2005-09-25 at 01:06 -0400, [EMAIL PROTECTED] wrote: > How could I change the program to accept something like: John Bob > Zelle Python or Kip Rada? > If it works for you with one word, all you need to make it accepts more is to add the space character " " with a weight of zero to "table".

Re: [Tutor] numbers from a name

2005-09-24 Thread Goofball223
How could I change the program to accept something like: John Bob Zelle Python or Kip Rada? ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] numbers from a name

2005-09-24 Thread ZIYAD A. M. AL-BATLY
On Sat, 2005-09-24 at 23:50 -0400, [EMAIL PROTECTED] wrote: > Hello Hi Goofball... > > with the following program I would like it to be able to take a > person's name and then assign values to each letter and come up with > a sum of all the letters in the name. for example if I entered bob. i > w

[Tutor] numbers from a name

2005-09-24 Thread Goofball223
Hello with the following program I would like it to be able to take a person's name  and then assign values to each letter and come up with a sum of all the letters in the name. for example if I entered bob. i would like the program to be able to print bob and then print the total of bob which wou