Given the following dataframe:
Number Color1 Color2
1 Red Yellow
2 Green Blue
How can I reshape this dataframe around the "Number" column?
Expected output
Number Color
1 Red
1 Yellow
2 Green
2 Blue
Note: The column names may not always be similar (Color1 and Color2 could be anything and aren't related)