I have two tables in python
table 1  
1   24
2   25
3   26
table 2
0   4
1   5
2   2
when I type table1/tabl2
It gives me all NaN
What I want to achieve here is getting a new table as below to show the division results
table3
1 6
2 5
3 13
Can anyone help?
Thanks
 
     
    