codecs.open需要很长时间才能执行

时间:2015-12-14 15:46:07

标签: python python-2.7

我发现codecs.open需要很长时间才能在Python 2.x中执行(大约5.9秒)。

是否有任何方法可以将我的代码更改为以便更快地执行?

with codecs.open(file,encoding='utf-8', errors='ignore', mode="r") as curr_file:
    for line in curr_file.readlines():

0 个答案:

没有答案