I have the following dataframe
| column1 | column1 |
|---|---|
| None | value 1 |
| None | value 1 |
| None | value 1 |
| None | value 1 |
| value2 | None |
Both columns have the same name. I want to make these two columns into one column and fill them with values. like this
| column1 |
|---|
| value1 |
| value1 |
| value1 |
| value1 |
| value2 |
What should I do?
Note that only one of the duplicate columns has a value.