[pyar] Unicode como nombre de archivo

Javier Castrillo riverplatense en gmail.com
Mar Jun 8 17:25:16 ART 2010


2010/6/8 Facundo Batista <facundobatista en gmail.com>:
> 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)
>



Te paso uno que tiene de todo "Avendaño José Luis"

In [7]: for renglon in gente:
   ...:     linea = renglon.strip()
   ...:     linea = linea.split(',')
   ...:     print repr(linea[1]), repr(linea[2])
   ...:
   ...:
'Avenda\xc3\xb1o' 'Jos\xc3\xa9 Luis'



Gracias!

-- 
Javier Castrillo

=========================================================
GNU / Linux User #242275

Jabber: javier en nube.usla.org.ar
Blog:   http://blog.javier.org.ar
Site:    http://carapa.com.ar
TCOS: http://argentina.tcosproject.org
=========================================================
Usá Software Libre



More information about the pyar mailing list