Good day,
I have a data frame with a column like this, let us assume with 1000rows but here is a sample:
A
12
24
36
48
I wish to split the number into two separate numbers. I want the output to look like this:
A B C
12 1 2
24 2 4
36 3 6
48 4 8
How can I achieve this using Pandas and Numpy? Help would be truly appreciated. Thanks in advance!