Duncan Booth wrote:
> Blackbird wrote:
>
>> [...]
>
>>>> a = 'I don\'t think so'
>>>> print '%r' % a
> "I don't think so"
>>>> a = r'I don\'t think so'
>>>> print "'%s'" % a
> 'I don\'t think so'

Excellent counterexample.  Can something like this happen for other things
than quotes?


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

Reply via email to