TOPIC IS FOR LOOPS (programming/python) You run a local girl's basketball league in your town. You have four teams that will play against each other in the leaguw, both at home and away. You've stored the names of the teams in a list. We want to write a script that will output all possible team pairings. for this, the order of the names matters because for each game, the first name will be the home team and the second name is the away team. Of course, what we don't want to do is have a team playing against itself. Complete the code to print all the possible team pairings but exclude those where a team would play against itself teams = [ 'Dragons', 'Wolves', 'Pandas', 'Unicorns' ] for home_team in teams: for away_team in teams: ________
TOPIC IS FOR LOOPS (
You run a local girl's basketball league in your town. You have four teams that will play against each other in the leaguw, both at home and away. You've stored the names of the teams in a list. We want to write a script that will output all possible team pairings. for this, the order of the names matters because for each game, the first name will be the home team and the second name is the away team. Of course, what we don't want to do is have a team playing against itself. Complete the code to print all the possible team pairings but exclude those where a team would play against itself
teams = [ 'Dragons', 'Wolves', 'Pandas', 'Unicorns' ]
for home_team in teams:
for away_team in teams:
________
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)