kiteh
2018-10-10 19:32:41 UTC
Hi everyone,
I have 2 list items which contains the same amount of items, and I am
trying to check the order of one list to another.
Eg.
# This is derived from maya.cmds
list01 = ['cleve', 'adam', 'yuno', 'pete']
# This is derived from dictionary keys in a way it is capturing the same
info from the scene but derived very differently
list02 = ['pete', 'yuno', 'cleve', 'adam']
I am unable to use `list01 = list02` or something similar, because both
lists are called from different applications and hence this question of
mine.
And the reason I had wanted to the order to be the same is so that the
application that uses `list02` will populate in the same hierarchical
manner as in `list01` (outliner).
And neither would I want to/ can use `sorted` as this will mess up my
order. What is the best way to go about this?
P.S: Sorry in advance if this sounds like a very noob question...
I have 2 list items which contains the same amount of items, and I am
trying to check the order of one list to another.
Eg.
# This is derived from maya.cmds
list01 = ['cleve', 'adam', 'yuno', 'pete']
# This is derived from dictionary keys in a way it is capturing the same
info from the scene but derived very differently
list02 = ['pete', 'yuno', 'cleve', 'adam']
I am unable to use `list01 = list02` or something similar, because both
lists are called from different applications and hence this question of
mine.
And the reason I had wanted to the order to be the same is so that the
application that uses `list02` will populate in the same hierarchical
manner as in `list01` (outliner).
And neither would I want to/ can use `sorted` as this will mess up my
order. What is the best way to go about this?
P.S: Sorry in advance if this sounds like a very noob question...
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+***@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/e248c2b5-26f0-4268-8bf8-73be9a446e99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+***@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/e248c2b5-26f0-4268-8bf8-73be9a446e99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.