Explore
Connect
Documentation
Snippets
Log in
Sign up
1
2
3
4
5
6
7
8
9
10
champions = [
(
2014
,
'San Antonio Spurs'
),
(
2015
,
'Golden State Warriors'
),
(
2016
,
'The Cleveland Cavaliers'
),
(
2017
,
'Golden State Warriors'
),
(
2018
,
'Golden State Warriors'
),
]
for
team
in
{c[
1
]
for
c
in
champions}:
# unordered
print(team)
Enter to Rename, Shift+Enter to Preview
Run