Hello all, <br><br>I am working on learning Python(on my own) and ran into an exercise that I figured out but I wanted to know if there was a different way to write the code? I know he wanted a different answer for the body because we haven&#39;t gotten to the &#39; &#39;.join() command yet. <br>
<br>This is what I have:<br><br>def joinStrings(stringList):<br> string = []<br>    for string in stringList:<br>        print &#39;&#39;.join(stringList)<br>        <br>    <br>def main():<br>    print joinStrings([&#39;very&#39;, &#39;hot&#39;, &#39;day&#39;])<br>
    print joinStrings([&#39;this&#39;, &#39;is&#39;, &#39;it&#39;])<br>    print joinStrings([&#39;1&#39;, &#39;2&#39;, &#39;3&#39;, &#39;4&#39;, &#39;5&#39;])<br><br>main()<br><br><br>thanks all <br>