[pyar] Unicode como nombre de archivo
Facundo Batista
facundobatista en gmail.com
Mar Jun 8 16:50:54 ART 2010
2010/6/8 Javier Castrillo <riverplatense en gmail.com>:
> gente = open('datos.txt', 'r')
> for renglon in gente:
> linea = renglon.strip()
> linea = linea.split(',')
> apellido = str(linea[1])
> nombre = str(linea[2])
¿Por qué el str() ahí?
Plis, hacé
gente = open('datos.txt', 'r')
for renglon in gente:
print repr(linea[1]), repr(linea[2])
y mostranos (no hace falta todo, sólo algún ejemplo)
--
. Facundo
Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
More information about the pyar
mailing list