The main thing your program lacks is flexibility.&nbsp; Adding new puzzles requires chaining together a series of if..else statements and creating variables for each hint. <br><br>Here&#39;s my quick version.&nbsp; I store the puzzles and the hints in a two-tuple sequence.&nbsp; Following this method you could easily add additional hints for each puzzle.
<br><br>&nbsp;(I changed up the scoring system a bit too...just my spin on it)<br><br>import random<br>&nbsp;<br># create a series of puzzles to choose from<br>puzzles = ((&quot;python&quot;,&quot;It&#39;s the best programming language for the absolute beginner ...&quot;),
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&quot;jumble&quot;,&quot;It&#39;s what this program does to words to make it difficult to guess them ...&quot;),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&quot;easy&quot;,&quot;It&#39;s not difficult ...&quot;),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&quot;difficult&quot;,&quot;It&#39;s not easy ...&quot;),
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&quot;answer&quot;,&quot;It&#39;s not a question ...&quot;),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&quot;xylophone&quot;,&quot;It&#39;s a musical instrument you have to hit with 2 small sticks ...&quot;))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<br># pick one word randomly from the sequence<br>which_puzzle = random.choice(range(len(puzzles)))<br>correct_word = puzzles[which_puzzle][0]<br>jumbled_word = list(correct_word)<br>hint = puzzles[which_puzzle][1]<br><br>
random.shuffle(jumbled_word)<br>jumbled_word = &#39;&#39;.join(jumbled_word)<br><br>print \<br>&quot;&quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Welcome to Word Jumple!<br>&nbsp;<br>&nbsp;&nbsp;&nbsp; Unscramble the letters to make a word.<br>&nbsp;&nbsp;&nbsp; (Press the enter key at the prompt to quit.)
<br>&quot;&quot;&quot;<br><br>&nbsp;<br>score = 0<br>while 1:<br>&nbsp;&nbsp;&nbsp; print &quot;The jumble:&quot;, jumbled_word<br>&nbsp;&nbsp;&nbsp; guess = raw_input(&quot;\nYour guess: &quot;)<br>&nbsp;&nbsp;&nbsp; guess = guess.lower()<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; if guess == &#39;&#39;:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break<br><br>&nbsp;&nbsp;&nbsp; if guess != correct_word:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;Sorry that&#39;s not it.&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hint_prompt = raw_input(&quot;Would you like a hint? Y/N: &quot;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hint_prompt = hint_prompt.lower()
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if hint_prompt.startswith(&#39;y&#39;):<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print hint+&quot;\n&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; score -= 50<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; if guess == correct_word:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; score += 200<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;\nThat&#39;s it! You guessed it!\n&quot;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if score == 200:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;Because you never asked for a hint you get %d points.\n&quot; % (score)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;Since you asked for a hint or two you&#39;re score is %d points.\n&quot; % (score)
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; <br>print &quot;\nThanks for playing.&quot;<br>&nbsp;<br><br><div><span class="gmail_quote">On 4/17/07, <b class="gmail_sendername">Alexander Kapshuk</b> &lt;<a href="mailto:akap@isd.dp.ua">
akap@isd.dp.ua</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">








<div link="blue" vlink="purple" lang="EN-AU">

<div>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Hello Everyone,</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">&nbsp;</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">This is Alexander Kapshuk writing here again …</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">&nbsp;</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Could you please have a look at the code below and let me
know of any shortcuts that could be used there.</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">&nbsp;</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">The code works fine as it is. I was just wandering if there
was a better, more compact and elegant way of writing the program.</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">&nbsp;</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Thanking you all in advance.</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">&nbsp;</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Alexander Kapshuk</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">&nbsp;</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># Word Jumble Game</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">#</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># The computer picks a random word and
then &quot;jumbles&quot; it.</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># The player has to guess the original
word.</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">#</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># Should the player be stuck and require
a hint, they will be prompted for a hint.</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># If the player answers &#39;yes&#39;, the
appropriate hint will be displayed and the player will be asked to guess again.</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># If the player answers &#39;no&#39;, they will
be asked to guess again and awarded some points if they manage to guess the jumbled
word without ever asking for a hint.</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">import random</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># create a sequence of words to choose
from</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">WORDS = (&quot;python&quot;,
&quot;jumble&quot;, &quot;easy&quot;, &quot;difficult&quot;,
&quot;answer&quot;, &quot;xylophone&quot;)</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># pick one word randomly from the
sequence</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">word = random.choice(WORDS)</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># create a variable to use later to see
if the guess is correct</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">correct = word</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># create hints for all the jumbled words</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">hint0 = &quot;\nIt&#39;s the best
programming language for the absolute beginner ...\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">hint1 = &quot;\nIt&#39;s what this program
does to words to make it difficult to guess them ...\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">hint2 = &quot;\nIt&#39;s not difficult
...\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">hint3 = &quot;\nIt&#39;s not easy
...\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">hint4 = &quot;\nIt&#39;s not a question
...\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">hint5 = &quot;\nIt&#39;s a musical
instrument you have to hit with 2 small sticks ...\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># create a jumbled version of the word</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">jumble = &quot;&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">while word:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; position =
random.randrange(len(word))</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; jumble +=
word[position]</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; word =
word[:position] + word[(position + 1):]</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);"># start the game</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">print \</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&quot;&quot;&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Welcome to Word Jumple!</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; Unscramble the
letters to make a word.</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; (Press the enter key
at the prompt to quit.)</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&quot;&quot;&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">print &quot;The jumble:&quot;, jumble</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">guess = raw_input(&quot;\nYour guess:
&quot;)</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">guess = guess.lower()</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">score = 0</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">while (guess != correct) and (guess !=
&quot;&quot;):</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; print &quot;\nSorry,
that&#39;s not it.\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; hint_prompt =
raw_input(&quot;Would you like a hint? Y/N: &quot;)</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; hint_prompt =
hint_prompt.lower()</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; if hint_prompt ==
&quot;yes&quot; and correct == WORDS[0]:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print hint0</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; elif hint_prompt ==
&quot;yes&quot; and correct == WORDS[1]:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print hint1</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; elif hint_prompt ==
&quot;yes&quot; and correct == WORDS[2]:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print hint2</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; elif hint_prompt ==
&quot;yes&quot; and correct == WORDS[3]:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print hint3</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; elif hint_prompt ==
&quot;yes&quot; and correct == WORDS[4]:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print hint4</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; elif hint_prompt ==
&quot;yes&quot; and correct == WORDS[5]:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print hint5</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; elif hint_prompt ==
&quot;no&quot;:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
score += 50</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; </span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; guess =
raw_input(&quot;Your guess: &quot;)</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; guess = guess.lower()</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; if guess == correct
and hint_prompt == &quot;no&quot;:</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print &quot;\nThat&#39;s it! You guessed it!\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
print &quot;Because you never asked for a hint you get&quot;, score,
&quot;points.\n&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">print &quot;\nThanks for playing.&quot;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">raw_input(&quot;\n\nPress the enter key
to exit.&quot;)</span></font></p>

<p><font color="#333399" face="Times New Roman" size="3"><span style="font-size: 12pt; color: rgb(51, 51, 153);">&nbsp;&nbsp;&nbsp; </span></font></p>

</div>

</div>


<br>_______________________________________________<br>Tutor maillist &nbsp;- &nbsp;<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Tutor@python.org">Tutor@python.org</a><br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://mail.python.org/mailman/listinfo/tutor" target="_blank">
http://mail.python.org/mailman/listinfo/tutor</a><br><br></blockquote></div><br>