import re
##EDIT didn't mean to copy filename = "rr.txt" ## opens file unicode file type
buffer = open('r.txt','r').read()
quotes = re.findall(ur'"[^"^\u201c]*["\u201d].*', buffer)
for quote in quotes:
print ''
print quote
## prints quotes found
## Problem is that the print output has rectangular blocks between each Character
为什么?
如何在没有矩形块弄乱一切的情况下返回输出?