Untitled

 avatar
unknown
plain_text
4 months ago
476 B
5
Indexable
import random

# List of Premier League teams
teams = [
    "Arsenal", "Aston Villa", "AFC Bournemouth", "Brentford", "Brighton & Hove Albion",
    "Chelsea", "Crystal Palace", "Everton", "Fulham", "Ipswich Town", "Leicester City",
    "Liverpool", "Manchester City", "Manchester United", "Newcastle United", "Nottingham Forest",
    "Southampton", "Tottenham Hotspur", "Wolverhampton Wanderers"
]

# Randomly pick a team
random_team = random.choice(teams)
print(random_team)
Editor is loading...
Leave a Comment