import string
translate_table = dict((ord(char), None) for char in string.punctuation)
tester=u'“What were the maester’s words?” Jaime asked.The bacon crunched when he bit into it.'
print sample.translate(translate_table)
-->“What were the maester’s words” Jaime askedThe bacon crunched when he bit into it
The quotation marks are still there. How to remove all the punctuation at one time?