当我认为它们应该存在时,我在 python 中的字符串不存在时遇到了一些问题==
,我相信这与它们的编码方式有关。基本上,我解析了一些存储在 zip 档案中的逗号分隔值(特别是 GTFS 提要,对于那些好奇的人)。
我在 python 中使用 ZipFile 模块打开 zip 存档中的某些文件,然后将那里的文本与一些已知值进行比较。这是一个示例文件:
agency_id,agency_name,agency_url,agency_phone,agency_timezone,agency_lang
ARLC,Arlington Transit,http://www.arlingtontransit.com,703-228-7433,America/New_York,en
我正在使用的代码试图识别文本第一行中字符串“agency_id”的位置,以便我可以在任何后续行中使用相应的值。这是代码片段:
zipped_feed = ZipFile(feed_name, "r")
agency_file = zipped_feed.open("agency.txt", "r")
line_num = 0
agencyline = agency_file.readline()
while agencyline:
if line_num == 0:
# this is the header, all we care about is the agency_id
lineparts = agencyline.split(",")
position = -1
counter = 0
for part in lineparts:
part = part.strip()
if part == "agency_id":
position = counter
counter += 1
line_num += 1
agencyline = agency_file.readline()
else:
.....
此代码适用于某些 zip 档案,但不适用于其他档案。我做了一些研究并尝试打印 repr(part),我得到了 '\xef\xbb\xbfagency_id' 而不是 'agency_id'。有谁知道这里发生了什么以及我该如何解决?感谢所有的帮助!