This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import codecs | |
def unicode_safe_127(ss): | |
"""safely handle strings with hard ordinal values greater than 127 | |
by escaping each value as appropriate""" | |
mys = ss | |
tos=[] | |
for i,s in enumerate(mys): | |
if ord(s)>127: | |
print codecs.unicode_escape_encode(mys)[0] |