我有一本这样的字典:
Apple FRU
Banana FRU
Copenhagen LOC
London LOC
Mango FRU
Orange FRU
Zurich LOC
另存为 txt 文件 (eurofruit_dict.txt)
我还有另一个 .txt 文件(eurofruitsalad.txt),其中有一个文本,每个句子都写在不同的行中。有点像这样:
There is a rotten apple in London.
He ate a banana in Zurich.
我需要编写一个程序,在我的字典中,我需要对文本进行注释。并将其另存为单独的文档。
我还需要提到文本中有多少水果和城市的名称。有一些像:
Number of fruits in the text: Number of cities in the text:
我已经做到了这一点:
with open("eurofruit_dict.txt") as fd:
for line in fd:
(key, val) = line.split()
dictionary = dict(line.strip().split(None, 1) for line in fd)
我不知道从这里做什么。
现在我是编程新手,所以请善待我。此外,因为我得了肺炎,我错过了过去两周的讲座。