Comment : I never did any VB so I am not sure if I understand you.

supposing your data comes like this :

python code :

Data = ( ('A', 1), ('B', 2), ('C', 3), ('D', 4) )
> #you can create a list of the items like this :
>
> List_Letters = [ x[0] for x in Data]
> List_Numbers = [ x[1] for x in Data]
>

hope this helps.
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to