我正在努力生成下面列表中所有可能形式的单词
例如,
从 word_forms.word_forms 导入 get_word_forms
text = ['courses', 'unsurpassable', 'alcohol'] a = [get_word_forms(word) for word in text] print(a)
[{'n':{'课程','课程','课程','课程'},'a':set(),'v':{'课程','课程','课程',' coursed'}, 'r': {'course'}}, {'n': set(), 'a': {'unsurpassable'}, 'v': set(), 'r': set()} , {'n': {'alcohols', '酒鬼', '酒鬼', '酒精'},
最后,我得到了上面的结果......但是,我想将它保存到一个 csv 文件中,但我找不到实现这一点的方法。
请让我知道除了包之外是否还有另一种解决方案“get_word_forms”来生成单词的所有可能形式。