forked from tdwojak/Python2018
rozwiazanie zad 2
This commit is contained in:
parent
f64e91b82f
commit
46c569c67b
@ -11,9 +11,17 @@ litery. (OOV = out of vocabulary) (W pythonie istnieje struktura danych tak
|
||||
jak 'set', która przechowuje elementy bez powtórzeń.)
|
||||
"""
|
||||
|
||||
from sets import Set
|
||||
|
||||
def oov(text, vocab):
|
||||
pass
|
||||
rozdzielenie=text.split(' ')
|
||||
slowo=set()
|
||||
|
||||
slowo=(slowo for slowo in rozdzielenie if slowo not in vocab)
|
||||
|
||||
|
||||
|
||||
return slowo
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user