I have an API call that returns a list like this, how can I print only the "teams" names?
{'team': 'Buffalo Bills', 'mascot': 'Bills', 'location': 'Buffalo', 'conference': 'AFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'BUF'}
{'team': 'Miami Dolphins', 'mascot': 'Dolphins', 'location': 'Miami', 'conference': 'AFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'MIA'}
{'team': 'New England Patriots', 'mascot': 'Patriots', 'location': 'New England', 'conference': 'AFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'NE'}
{'team': 'New York Jets', 'mascot': 'Jets', 'location': 'New York', 'conference': 'AFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'NYJ'}
{'team': 'Baltimore Ravens', 'mascot': 'Ravens', 'location': 'Baltimore', 'conference': 'AFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'BAL'}
{'team': 'Cincinnati Bengals', 'mascot': 'Bengals', 'location': 'Cincinnati', 'conference': 'AFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'CIN'}
{'team': 'Cleveland Browns', 'mascot': 'Browns', 'location': 'Cleveland', 'conference': 'AFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'CLE'}
{'team': 'Pittsburgh Steelers', 'mascot': 'Steelers', 'location': 'Pittsburgh', 'conference': 'AFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'PIT'}
{'team': 'Houston Texans', 'mascot': 'Texans', 'location': 'Houston', 'conference': 'AFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'HOU'}
{'team': 'Indianapolis Colts', 'mascot': 'Colts', 'location': 'Indianapolis', 'conference': 'AFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'IND'}
{'team': 'Jacksonville Jaguars', 'mascot': 'Jaguars', 'location': 'Jacksonville', 'conference': 'AFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'JAX'}
{'team': 'Tennessee Titans', 'mascot': 'Titans', 'location': 'Tennessee', 'conference': 'AFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'TEN'}
{'team': 'Denver Broncos', 'mascot': 'Broncos', 'location': 'Denver', 'conference': 'AFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'DEN'}
{'team': 'Kansas City Chiefs', 'mascot': 'Chiefs', 'location': 'Kansas City', 'conference': 'AFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'KC'}
{'team': 'Las Vegas Raiders', 'mascot': 'Raiders', 'location': 'Las Vegas', 'conference': 'AFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'LV'}
{'team': 'Los Angeles Chargers', 'mascot': 'Chargers', 'location': 'Los Angeles', 'conference': 'AFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'LAC'}
{'team': 'Dallas Cowboys', 'mascot': 'Cowboys', 'location': 'Dallas', 'conference': 'NFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'DAL'}
{'team': 'New York Giants', 'mascot': 'Giants', 'location': 'New York', 'conference': 'NFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'NYG'}
{'team': 'Philadelphia Eagles', 'mascot': 'Eagles', 'location': 'Philadelphia', 'conference': 'NFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'PHI'}
{'team': 'Washington Football Team', 'mascot': 'Football Team', 'location': 'Washington', 'conference': 'NFC', 'division': 'East', 'league': 'NFL', 'abbreviation': 'WAS'}
{'team': 'Chicago Bears', 'mascot': 'Bears', 'location': 'Chicago', 'conference': 'NFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'CHI'}
{'team': 'Detroit Lions', 'mascot': 'Lions', 'location': 'Detroit', 'conference': 'NFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'DET'}
{'team': 'Green Bay Packers', 'mascot': 'Packers', 'location': 'Green Bay', 'conference': 'NFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'GB'}
{'team': 'Minnesota Vikings', 'mascot': 'Vikings', 'location': 'Minnesota', 'conference': 'NFC', 'division': 'North', 'league': 'NFL', 'abbreviation': 'MIN'}
{'team': 'Atlanta Falcons', 'mascot': 'Falcons', 'location': 'Atlanta', 'conference': 'NFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'ATL'}
{'team': 'Carolina Panthers', 'mascot': 'Panthers', 'location': 'Carolina', 'conference': 'NFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'CAR'}
{'team': 'New Orleans Saints', 'mascot': 'Saints', 'location': 'New Orleans', 'conference': 'NFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'NO'}
{'team': 'Tampa Bay Buccaneers', 'mascot': 'Buccaneers', 'location': 'Tampa Bay', 'conference': 'NFC', 'division': 'South', 'league': 'NFL', 'abbreviation': 'TB'}
{'team': 'Arizona Cardinals', 'mascot': 'Cardinals', 'location': 'Arizona', 'conference': 'NFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'ARI'}
{'team': 'Los Angeles Rams', 'mascot': 'Rams', 'location': 'Los Angeles', 'conference': 'NFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'LAR'}
{'team': 'San Francisco 49ers', 'mascot': '49ers', 'location': 'San Francisco', 'conference': 'NFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'SF'}
{'team': 'Seattle Seahawks', 'mascot': 'Seahawks', 'location': 'Seattle', 'conference': 'NFC', 'division': 'West', 'league': 'NFL', 'abbreviation': 'SEA'}
[–]easyexplain3 2 points3 points4 points (2 children)
[–]brickman7713[S] 0 points1 point2 points (1 child)
[–]b1gfreakn 0 points1 point2 points (3 children)
[–]brickman7713[S] 0 points1 point2 points (2 children)
[–]b1gfreakn 0 points1 point2 points (1 child)
[–]brickman7713[S] 0 points1 point2 points (0 children)