I have the single-column Dataframe similar to a example below:
import pandas
df = pandas.DataFrame({'Column': [[10, 100],[20, 200],[30, 300]]})
Column
0 [10, 100]
1 [20, 200]
2 [30, 300]
How can I add a rows element by element such that my result will be:
Column
0 [60, 600]