python 怎么判断ascii字符串问题python里面用什么方法可以判断一段字符串是纯粹可打印的ascii字符串?[解决办法]str有isprintable()方法:
>>> "a".isprintable()True>>> "\x01".isprintable()False