I have the following code (Assuming I am typing in IDLE line by line)
# -*- coding: utf-8 -*-
s = u"My Currency is - £"
s
print s
for - s
- I'm getting an output - u'My Currency is - \xa3'
for - print s
- I'm getting an output - u'My Currency is - £'
What is the difference ? Why I am getting different outputs ?