B
Batista, Facundo
One detail I found, don't now if it's ok:
Python 2.1.1 (#4, Mar 8 2002, 12:32:24)
[GCC 2.95.3 20010315 (release)] on sunos5
Is this OK?
Why this different behaviour?
Thank you!
.. Facundo
Python 2.1.1 (#4, Mar 8 2002, 12:32:24)
[GCC 2.95.3 20010315 (release)] on sunos5
a = 'ñ'
a '\xf1'
print a ñ
l = ['ñ']
l ['\xf1']
print l ['\xf1']
Is this OK?
Why this different behaviour?
Thank you!
.. Facundo