uaveiro-leci/1ano/fp/aula05/allMatches.py

16 lines
373 B
Python
Raw Normal View History

2022-10-20 21:22:14 +00:00
def main():
matches = allMatches(['SLB', 'FCP', 'SCP', 'SB'])
print(matches)
print(len(matches))
def allMatches(teamList):
matchList = []
for team1 in teamList:
for team2 in teamList:
if team1 == team2:
continue
matchList.append((team1, team2))
return matchList
if __name__ == "__main__":
main()