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
なんで?
長方形のブロックがすべてを台無しにすることなく、どのように出力を返しますか?