I have a df with multiple authors associated with one title and location:
title | location | author 1 | author 2 | author 3
---------------------------------------------------
A | US | jon smit| johnny | brad
B | Asia | Kenny lee| None | None
C | Europe | gutentag | bonjour | None
And I want output to ignore any None values and look like:
title | location | author |
-----------------------------
A | US | jon smit|
A | US | johnny |
A | US | brad |
B | Asia | Kenny lee|
C | Europe | gutentag |
C | Europe | bonjour |
Any help would be appreciated!