判断字符串中是否包含中文 :param check_str: {str} 需要检测的字符串 :return: {bool} 包含返回True, 不包含返回False """ forchincheck_str: ifu'\u4e00'<=ch<=u'\u9fff': returnTrue returnFalse 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 去除标点符号 defremove_punctuation(line): rule=re.com...