A for-loop adding all recorded games in a list. Then comparing the number of wins to loses to determine which group to output
games = []
points = 0
for i in range(6):
games.append(input())
for i in range(6):
if games[i] == "W":
points +=1
if points == 5 or points == 6:
print(1)
elif points == 3 or points == 4:
print(2)
elif points == 1 or points == 2:
print(3)
Comments