In advance: Sorry, the title is a bit fuzzy
PYTHON
I have two tables. In one there are unique names for example 'A', 'B', 'C' and in the other table there is a Time series with months example 10/2021, 11/2021, 12/2021. I want to join the tables now that I have all TimeStemps for each name. So the final data should look like this:
| Month | Name | 
|---|---|
| 10/2021 | A | 
| 11/2021 | A | 
| 12/2021 | A | 
| 10/2021 | B | 
| 11/2021 | B | 
| 12/2021 | B | 
| 10/2021 | C | 
| 11/2021 | C | 
| 12/2021 | C | 
 
     
     
    