8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

使用 python 中的 for 循环遍历文本文件 - 为什么这样做有效?

imbolc 2月前

21 0

我目前正在学习如何在 Python 中创建拼写检查器。在一些教程中,我看到类似以下内容:def ReadDictionaryFile(dictionaryfilename): dictionarywords = [] ...

我目前正在学习如何用 Python 创建拼写检查器。在一些教程中,我看到了类似以下内容:


def ReadDictionaryFile(dictionaryfilename):
    dictionarywords = []                       # stores words in a list
    inputfile = open(dictionaryfilename, "r")

    for line in inputfile:                     # iterate over the lines of the file
        word = line.strip()                    # whitespace removed
        dictionarywords.append(word)           # appends word to the list
    inputfile.close()
    return dictionarywords

但我不明白 python 如何知道将其分成几行。

在中 for line in inputfile: ,\'line\' 只是一个变量,那么代码的哪部分实际上告诉它在 \n 处停止?

Python 中是否有一些内置功能,当 for 循环遍历文本时,当遇到 \n 时才开始下一次迭代?我找不到有关此的任何信息...

任何帮助都值得感激!

帖子版权声明 1、本帖标题:使用 python 中的 for 循环遍历文本文件 - 为什么这样做有效?
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由imbolc在本站《file》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: