I have a list compiled from excel cells, using python - say listlist. Each element in the cell/list is in unicode. When I print the list as
print listlist
I see 'u' prepended to each member of the list. But when I print the list like
for member in listlist:
print member
I do not see the 'u' prepended to the member.
Can someone please explain to me why there is this difference? Is it defined in the xlrd module?