python中open函数是不是一次性载入内存?

背景:语料库,词袋
形如:
dictionary=corpora.Dictionary(line.split()forlineinopen(mycorpora.txt))
文本文件是不是一次性载入内存?
慕侠2389804
浏览 298回答 2
2回答

冉冉说

line.split()forlineinopen(mycorpora.txt)会返回一个generator给corpora.Dictionary.Wecanusethegeneratorexpressionsasargumentstovariousfunctionsthatconsumeiterators.sum(((x*xforxinrange(10)))285Whenthereisonlyoneargumenttothecallingfunction,theparenthesisaroundgeneratorexpressioncanbeomitted.sum(x*xforxinrange(10))285而open函数只是给你个handle,他可不知道你要去读还是写。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript