2

我正在学习 Python,其中一个实验室要求我导入一个单词列表作为字典,然后将该单词列表与一些也导入的文本进行比较。这不是上课的,我只是自学,或者我会问老师。在进行比较之前,我一直在关注如何将导入的文本转换为大写。

这是实验室的 URL: http://programarcadegames.com/index.php?chapter= lab_spell_check

我查看了下面的帖子/答案和一些 youtube 视频,但我仍然无法弄清楚如何做到这一点。任何帮助,将不胜感激。

将包含字符串的 Python 列表全部转换为小写或大写

如何将大写字母转换为小写字母

这是我到目前为止的代码:

# Chapter 16 Lab 11

import re

# This function takes in a line of text and returns
# a list of words in the line.
def split_line(line):
    return re.findall('[A-Za-z]+(?:\'[A-Za-z]+)?',line)

dfile = open("dictionary.txt")

dictfile = []
for line in dfile:
    line = line.strip()
    dictfile.append(line)

dfile.close()

print ("--- Linear Search ---")

afile = open("AliceInWonderLand200.txt")

for line in afile:
    words = []
    line = split_line(line)
    words.append(line)
    for word in words:   
        lineNumber = 0
        lineNumber += 1
        if word != (dictfile):
            print ("Line ",(lineNumber)," possible misspelled word: ",(word))

afile.close()
4

1 回答 1

1

就像 lb 说的:你使用.upper()

dictfile = []
for line in dfile:
    line = line.strip()
    dictfile.append(line.upper()) # <- here.
于 2013-07-05T14:22:37.217 回答