First, I just want to say, I know you can't assign to 'literals'.
1 = 15, "word" = 5
but you can input
word = 5
if i made mylist = ["word", "black","dance", "bread"]
I fully understand that mylist[0] is a variable, I get that, but is there no fancy python method that has escaped my detection to do, for example,
MyList = ["word", "black","dance", "bread"]
OtherList = [ OtherClass(), 1, "Much Brave", "Such Awesome"]
for i in MyList:
i.supersweetliteralmethodthatIvewantedsincethedaysofQBasic() = OtherList[i]
A boy can dream.