How would I access the string that is in the [1] position of a tuple at a given index of a listbox. What I'm trying to do is something like this:
a=Lb1.curselection()[1]
a=int(a)
print(Lb1[a])
Lb1 is obviously the listbox. This particular attempt claims 1 is out of range "although I know it has a string in that position". With [0] in the position when it gets to Lb1[a] it claims, can't convert type int to str implicitly, however I wouldn't want to do that, because, futilely, I'm trying to index it.