On Wed, Jul 28, 2010 at 4:02 AM, Dave Castellano
<dcastellano1 / wideopenwest.com> wrote:
> Hi,
>
> Can anyone help me with the correct syntax to insert into a
> multidimensional array...
>
> answer_choices = [
>  ¨Βιξγοςςεγτίαξσί²¬ ιξγοςςεγτίαξξοί²έ¬
>  ¨Βιξγοςςεγτίαξσί³¬ ιξγοςςεγτίαξξοί³έ¬
>  ¨Βιξγοςςεγτίαξσί΄¬ ιξγοςςεγτίαξξοί΄έ¬
>  ¨Βιξγοςςεγτίαξσίµ¬ ιξγοςςεγτίαξξοίµ> ]
>
>
> # Randomly insert correct answer.
>  ¨Β ςαξ䨴>  ¨Βξσχεςίγθοιγεσ®ιξσεςτΏΏΏΏΏΏΏΏ  ¨Βοςςεγτίαξσί±
>  ¨Βξσχεςίγθοιγεσ®ιξσεςτΏΏΏΏΏΏΏΏ  ¨Βοςςεγτίαξξοί>
>
> I want to insert correct_ans_1 into position [x,0] and correct_anno_1
> into position [x,0].

You nearly had it in that sentence:

answer_choices[x][0] = correct_ans_1
answer_choices[x][1] = correct_ano_1

(I assume you wanted to insert the correct_anno_1 in position 1 of the array).

Jesus.