我知道要检查字符串是否可打印,我们可以执行以下操作:
def isprintable(s,codec='utf8'):
try:
s.codec(codec)
except UnicodeDecodeError:
return False
else:
return True
但是有没有办法用 Unicode 而不是字符串呢?顺便说一句,我正在处理推文,我将推文转换为 Unicode,如下所示
text=unicode(status.text)