I have this table:
| product | date | value |
|---|---|---|
| Prdct_1Prdct_2Prdct_3Prdct_4Prdct_5Prdct_6 | 23.7.2022 | 100 |
and the result should be
| product | date | value |
|---|---|---|
| Prdct_1 | 23.7.2022 | 100 |
| Prdct_2 | 23.7.2022 | 100 |
| Prdct_3 | 23.7.2022 | 100 |
| Prdct_4 | 23.7.2022 | 100 |
| Prdct_5 | 23.7.2022 | 100 |
| Prdct_6 | 23.7.2022 | 100 |
How should I solve it with python?