arr = {
       {'a',1},
       {'b',2},
       {'c',3}
}
    print(arr[1][1])
    print(arr[2][2])
    print(arr[2])
output would be
a 2 table: 0x1e41080, This may be a very newbie question for you guys. But even though it is really embarrassing to ask such question here, I ask because couldn't find solution in online. Is there a way that can point whole table of table? Like I want to point {'b',2} instead of the address of array/table.
 
     
    