Hi Mike,<div><br></div><div>You can return lists just like any other variable in Python. When you iterate over it, just remember that the returned value was a list, and not a single value. You don&#39;t need to make it into a tuple or wrap it in another list like in your example. Here&#39;s a demo for you:</div>

<div><br></div><div>def foo():</div><div>    return [&quot;baz&quot;, &quot;bar&quot;, &quot;quux&quot;]</div><div><br></div><div>my_list = foo()</div><div>for x in my_list:</div><div>    print x  # Prints &quot;baz\nbar\nquuz&quot;</div>

<div><br></div><div>If you do like in your example, and put my_list = [foo()] you&#39;ll have a list of lists containing your desired list. Probably not what you&#39;re looking for.</div><div><br></div><div>Hope that helps,<br clear="all">

<div>Nick</div><br>
<br><br><div class="gmail_quote">On Tue, Dec 27, 2011 at 7:18 PM, Mike Bean <span dir="ltr">&lt;<a href="mailto:beandaemon@gmail.com">beandaemon@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

OK, I&#39;m pretty sure this is a fairly novice question, but I&#39;m working a project on my own and my attempts to suss the solution have met with limited success.<br>I&#39;m writing mostly similar code over and over again, bad me.  But I have to be able to return a list/array, and I don&#39;t know if return statement can handle more then just a single variable.  So for example, I realize your generic scenario is <br>


<br>def function()<br>     variable=&quot;whatever&quot;<br>     return(variable)<br><br>newvar=function()<br>print(&quot;newvar&quot;)<br><br>but I want to know is what&#39;s wrong with my logic in this sense:<br><br>def function()<br>


     my_array=[1,2,3]<br>     return(my_array)<br><br>new_array=[(my_array)]<br>for x in new_array:<br>     print(x)<br><br>testing has met with no success obviously.  I&#39;m assuming it&#39;s because an array is not the same thing as a generic variable.  In any case, any suggestions/guidance from folks with experience in programming/python is appreciated.<br>

<font color="#888888">
<br>Bean<br>
</font><br>_______________________________________________<br>
clue mailing list: <a href="mailto:clue@cluedenver.org">clue@cluedenver.org</a><br>
For information, account preferences, or to unsubscribe see:<br>
<a href="http://cluedenver.org/mailman/listinfo/clue" target="_blank">http://cluedenver.org/mailman/listinfo/clue</a><br></blockquote></div><br></div>