1
The idea is as follows: Each team has 6 maps played (mapList) I made a web Rawler that takes all the information related to the team and the map and wanted to insert automatically in a spreadsheet using pandas. However I come across the following situation... He always stops at Fnatic which is the 6th team, because there are only 6 maps.
team = ["astralis", "Navi", "big", "Ence", "faze", "Fnatic", "furia", "heroic", "Liquid", "mibr", "mousesports","nip", "nrg", "Renegates","vitality","G2","Envy"]
mapList = ["Mirage", "Dust2", "inferno", "Nuke", "Overpass", "Train"]
...
t = 0
while t < len(team):
for m in mapList:
TesteTime = Time(team[t], m, 0,0,0,0,0,0)
TesteTime.leitura(team[t], m)
TesteTime.handicapMedio()
TesteTime.HandicapVitoria()
TesteTime.HandicapDerrota()
TesteTime.rounds()
t+=1
but the desired result is: astralis Mirage astralis Dust2 astralis inferno astralis Nuke astralis Overpass astralis Train And so on, which he already does, but when he reaches the fury he already stops and breaks the while
– Matheus Costa
I edited the answer.
– Murilo Sitonio