<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 PTSIZE=10>I would like to insert </FONT><FONT  COLOR="#0000ff" BACK="#ffffff" style="BACKGROUND-COLOR: #ffffff" SIZE=2 PTSIZE=10 FAMILY="SANSSERIF" FACE="Arial" LANG="0">string.join(msgList,"")</FONT><FONT  COLOR="#000000" BACK="#ffffff" style="BACKGROUND-COLOR: #ffffff" SIZE=2 PTSIZE=10 FAMILY="SANSSERIF" FACE="Arial" LANG="0"> into the following program where do I insert it?
<BR>
<BR># numbers2text.py
<BR># &nbsp;&nbsp;&nbsp;&nbsp;A program to convert a sequence of ASCII numbers into
<BR># &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a string of text.
<BR>
<BR>import string &nbsp;# include string library for the split function.
<BR>
<BR>def main():
<BR> &nbsp;&nbsp;&nbsp;print "This program converts a sequence of ASCII numbers into"
<BR> &nbsp;&nbsp;&nbsp;print "the string of text that it represents."
<BR> &nbsp;&nbsp;&nbsp;print
<BR> &nbsp;&nbsp;&nbsp;
<BR> &nbsp;&nbsp;&nbsp;# Get the message to encode
<BR> &nbsp;&nbsp;&nbsp;inString = raw_input("Please enter the ASCII-encoded message: ")
<BR>
<BR> &nbsp;&nbsp;&nbsp;# Loop through each substring and build ASCII message
<BR> &nbsp;&nbsp;&nbsp;message = ""
<BR> &nbsp;&nbsp;&nbsp;for numStr in string.split(inString):
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;asciiNum = eval(numStr) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# convert digits to a number
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;message = message + chr(asciiNum) # append character to message
<BR>
<BR> &nbsp;&nbsp;&nbsp;print "The decoded message is:", message
<BR>
<BR>main()</FONT></HTML>