Hi;<br>I have the following code:<br><br>    elif table[0] == 't': # This is a store subtype table<br>      bits = string.split(table, '0')<br>      sst.append(bits[2])<br>      sstp.append(bits[1])<br>  subtypes = dict(zip(sstp, sst))<br>
<br>When I print these out to screen, I get this:<br><br>sst: ['doctors', 'patient']
<br>
sstp: ['prescriptions', 'prescriptions']
<br>
subtypes: {'prescriptions': 'patient'}

<input name="bst" value="[" type="hidden">
<input name="sst" value="[" type="hidden">
<input name="sstp" value="[" type="hidden">


  
    
<br><br>Why do I only get one item from sst and sstp zipped? Why not both??<br>TIA,<br>V<br>