I've a list of teams as below:
|Team|
|---|
|A|
|B|
|C|
What would be the pandas/python way to create the following table of fixtures:
|Home Team|Away Team|
|---|---|
|A|B|
|A|C|
|B|A|
|B|C|
|C|A|
|C|B|
Each team plays the other team twice (home and away).