I get variables like these:
ocd[2].likelihood.range[1][0]=[-5219, -5191, 11.7];
ocd[2].likelihood.range[1][1]=[-5180, -5057, 56.5];
from an other program. I re-formate to:
range10=[-5219, -5191, 11.7];
range11=[-5180, -5057, 56.5];
for to use them in Python, but this is a lot of work, so my question is if it somehow is possible to use these variables with there original name in Python?
ocdlist or just text?