I have the following DF
col1| col2
123| NaN
234| 234
456| NaN
567| 567
and what I want to do, is to copy the left cell to the right cell if the right cell is empty, so the output is
col1| col2
123| 123
234| 234
456| 456
567| 567
I tried to work something with fillna, but failed miserably