311.csv #1

Open
s354567 wants to merge 17 commits from s354567/Python2018:master into master
Showing only changes of commit 962f5156b5 - Show all commits

View File

@ -12,8 +12,15 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
""" """
from sets import Set
def oov(text, vocab): def oov(text, vocab):
pass rozdzielenie=text.split(' ')
slowo=set()
slowo=(slowo for slowo in rozdzielenie if slowo not in vocab)
return slowo