[pyar] CSV y flags

Facundo Batista facundobatista en gmail.com
Lun Dic 7 06:42:36 ART 2015


2015-12-06 21:52 GMT-03:00 Leandro Minatel <leandro en minatel.com.ar>:

> lReg = [False] * 9
> with open(filename) as f:
> for line in f:
> reg = line[1:3]

Si el archivo es un CSV, te conviene leerlo con el módulo "csv".


> if reg == "00":
> lReg[0] = True

Andá guardando los registros en un set(), y luego compará que tengas todos:

   if registros == {"00", "01", ...}:
      ....

Slds.

-- 
.    Facundo

Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
Twitter: @facundobatista


More information about the pyar mailing list