标签: python python-2.7
我发现codecs.open需要很长时间才能在Python 2.x中执行(大约5.9秒)。
codecs.open
是否有任何方法可以将我的代码更改为以便更快地执行?
with codecs.open(file,encoding='utf-8', errors='ignore', mode="r") as curr_file: for line in curr_file.readlines():