标签: python python-2.6
我正在从文本文件中读取数据,该文本文件的某些字符串中带有。
我的输入字符串:-'这里还有“很多苹果”
我正在将其写入列表,如下所示。
myList=['There', 'are', u'\uf8ffmany', 'more', u'\uf8ffapples', 'here']
我想过滤掉所有包含的项目,并保留其余所有项目。我尝试使用fnmatch,但不确定如何处理。
所需的输出。
finalList=['There', 'are', 'more', 'here']