Robin Haswell wrote:
> Hey guys. This should just be a quickie: I can't figure out how to convert
> r"\x2019" to an int - could someone give me a hand please?

>>> int(r'\x2019'.decode('string_escape'))
19

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to