标签: python
我有一个以unicode
我尝试使用以下代码在unicode文件中搜索该字符串
file_name="test_string" with open(filepath) as f: for line in f: if file_name.lower() in line.lower(): return 1
但上面的代码适用于AASCI编码文件。请帮我在unicode编码文件中找到字符串。