In my program I use this var:
payoff_matrix = [ [(4,4),(1,6)] , [(6,1),(2,2)] ]
And i need to check (4,4) and (2,2), (It can be anything)
I use
a=payoff_matrix[0]
b=a[0]
c=b[0]
d=b[1]
And result is
c=4
d=4
Can I go to that like
c=payoff_matrix[0].[0].[0]
or somehow?
1 Answer