简体   繁体   English

如何使用 Python 从文本文件中返回唯一的单词

[英]How to return unique words from the text file using Python

How do I return all the unique words from a text file using Python?如何使用 Python 从文本文件中返回所有唯一单词? For example:例如:

I am not a robot我不是机器人

I am a human我是人

Should return:应该返回:

I一世

am

not不是

a一种

robot机器人

human人类

Here is what I've done so far:这是我到目前为止所做的:

def unique_file(input_filename, output_filename):
    input_file = open(input_filename, 'r')
    file_contents = input_file.read()
    input_file.close()
    word_list = file_contents.split()

    file = open(output_filename, 'w')

    for word in word_list:
        if word not in word_list:
            file.write(str(word) + "\n")
    file.close()

The text file the Python creates has nothing in it. Python 创建的文本文件中没有任何内容。 I'm not sure what I am doing wrong我不确定我做错了什么

for word in word_list:
    if word not in word_list:

every word is in word_list , by definition from the first line.根据第一行的定义,每个word都在word_list

Instead of that logic, use a set :使用set代替该逻辑:

unique_words = set(word_list)
for word in unique_words:
    file.write(str(word) + "\n")

set s only hold unique members, which is exactly what you're trying to achieve. set只包含唯一成员,这正是您想要实现的。

Note that order won't be preserved, but you didn't specify if that's a requirement.请注意,订单不会被保留,但您没有指定这是否是一项要求。

Simply iterate over the lines in the file and use set to keep only the unique ones.只需遍历文件中的行并使用 set 仅保留唯一的行。

from itertools import chain

def unique_words(lines):
    return set(chain(*(line.split() for line in lines if line)))

Then simply do the following to read all unique lines from a file and print them然后只需执行以下操作即可从文件中读取所有唯一行并打印它们

with open(filename, 'r') as f:
    print(unique_words(f))

This seems to be a typical application for a collection:这似乎是一个集合的典型应用:

...
import collections
d = collections.OrderedDict()
for word in wordlist: d[word] = None 
# use this if you also want to count the words:
# for word in wordlist: d[word] = d.get(word, 0) + 1 
for k in d.keys(): print k

You could also use a collection.Counter(), which would also count the elements you feed in. The order of the words would get lost though.您还可以使用 collection.Counter(),它还会计算您输入的元素。但是单词的顺序会丢失。 I added a line for counting and keeping the order.我添加了一行用于计数和保持订单。

string = "I am not a robot\n I am a human"
list_str = string.split()
print list(set(list_str))
def unique_file(input_filename, output_filename):
    input_file = open(input_filename, 'r')
    file_contents = input_file.read()
    input_file.close()
    duplicates = []
    word_list = file_contents.split()
    file = open(output_filename, 'w')
    for word in word_list:
        if word not in duplicates:
            duplicates.append(word)
            file.write(str(word) + "\n")
    file.close()

This code loops over every word, and if it is not in a list duplicates , it appends the word and writes it to a file.这段代码遍历每个单词,如果它不在一个列表中, duplicates ,它会附加这个单词并将其写入文件。

Using Regex and Set:使用正则表达式和设置:

import re
words = re.findall('\w+', text.lower())
uniq_words = set(words)

Other way is creating a Dict and inserting the words like keys:另一种方法是创建一个 Dict 并插入像键这样的词:

for i in range(len(doc)):
        frase = doc[i].split(" ")
        for palavra in frase:
            if palavra not in dict_word:
                dict_word[palavra] = 1
print dict_word.keys()

The problem with your code is word_list already has all possible words of the input file.您的代码的问题是 word_list 已经包含输入文件的所有可能单词。 When iterating over the loop you are basically checking if a word in word_list is not present in itself.迭代循环时,您基本上是在检查 word_list 中的单词本身是否不存在。 So it'll always be false.所以它永远是假的。 This should work.. (Note that this wll also preserve the order).这应该可以工作..(请注意,这也将保留顺序)。

def unique_file(input_filename, output_filename):
  z = []
  with open(input_filename,'r') as fileIn, open(output_filename,'w') as fileOut:
      for line in fileIn:
          for word in line.split():
              if word not in z:
                 z.append(word)
                 fileOut.write(word+'\n')

Use a set.使用一套。 You don't need to import anything to do this.您无需导入任何内容即可执行此操作。

#Open the file
my_File = open(file_Name, 'r')
#Read the file
read_File = my_File.read()
#Split the words
words = read_File.split()
#Using a set will only save the unique words
unique_words = set(words)
#You can then print the set as a whole or loop through the set etc
for word in unique_words:
     print(word)
try:
    with open("gridlex.txt",mode="r",encoding="utf-8")as india:

        for data in india:
            if chr(data)==chr(data):
                print("no of chrats",len(chr(data)))
            else:
                print("data")
except IOError:
    print("sorry")

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM