-
Notifications
You must be signed in to change notification settings - Fork 0
/
abrev.py
30 lines (30 loc) · 808 Bytes
/
abrev.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
team_abbreviations = {
"Manchester City": "MCI",
"Arsenal": "ARS",
"Manchester United": "MUN",
"Newcastle United": "NEW",
"Liverpool": "LIV",
"Brighton & Hove Albion": "BHA",
"Aston Villa": "AVL",
"Tottenham Hotspur": "TOT",
"Brentford": "BRE",
"Fulham": "FUL",
"Crystal Palace": "CP",
"Chelsea": "CHE",
"Wolverhampton Wanderers": "WOL",
"West Ham United": "WHU",
"AFC Bournemouth": "BOU",
"Nottingham Forest": "NFO",
"Everton": "EVE",
"Leicester City": "LEI",
"Leeds United": "LEE",
"Southampton": "SOU",
'Sheffield United': "SHU",
"Burnley": "BUR",
"Luton Town": "LUT",
"Norwich City": "NOR",
"West Bromwich Albion": "WBA",
"Cardiff City": "CAR",
"Huddersfield Town": "HUD",
"Watford": "WAT"
}