Hi;<br>I have this line of code:<br><br>for store in ourStores():<br><br>which is called from the statement:<br><br>from particulars import ourStores<br><br>The latter file has the following:<br><br>def ourStores():<br> return ['prescriptions', 'products']<br>
<br>Yet, the above iteration only iterates the last of these items ('products'). Why?<br>TIA,<br>Victor<br>