def copy_header(path):
encoding = _get_encoding(path)
try:
file = codecs.open(path, "r", encoding)
except:
pass
else:
for row in file:
if not row or row[0] != ';':
break
row = row.strip(" \n")
if row == ';; okuri-ari entries.':
break
print(row)
file.close()
# 2????????????????????????
评论列表
文章目录