"malathi selvaraj" wrote
i am new one to this programming language.
Hello and welcome.
what i do to learn python in proper manner.
First of all make sure you download Python v2.6
rather than v3. v3 is not ideal for learning just yet
it is still rather new.
Do you know any other progra
i am new one to this programming language.
i like to learn python,what i do?
what i do to learn python in proper manner.
--
Regards,
S.Malathi.
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
Thank you all for the help. I believe I understand now, and think this will be
a great group to learn from.
Doug
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
On Thu, May 21, 2009 at 2:42 AM, spir wrote:
>
>while word:
> position = random.randrange(len(word))
>jumble += word[position]
>word = word[:position] + word[(position + 1):]
>
Something that many of us use for debugging, and is also useful for
comprehension is a sim
Le Wed, 20 May 2009 18:25:07 -0700 (PDT),
Doug Reid s'exprima ainsi:
> "The next line in the loop,
>word = word[:position] + word[(position + 1):]
>
> creates a new version of word minus the one letter at position position.
> Using slicing, the computer creates two new strings from word. The
Doug Reid wrote:
Now here is the code I'm having trouble following:
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]
position = random.randrange(len(word)). This will create a starting
point for the progra
Hi,
I'm teaching myself Python mainly for to use as a hobby. I'd like to do
graphical programs eventually and maybe some simple graphic games. I feel I'm
doing well with the tutorial I'm using but it would be nice to have some real
people to ask questions and opinions, so on that note, I'm h