Advertisement
jsbsan

creandoestructuradatos

Oct 9th, 2014
1,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. #creando estructura de datos
  2. for i in range(0,len(line),4):
  3.     jugador=line[i+1]
  4.     pais=line[i+2]
  5.     marcador=line[i+3]
  6.     dato.append(jugador + '|'+ pais + '|'+marcador)
  7.     print(line[i],line[i+1],line[i+2],line[i+3])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement