如何从 WordNet NLTK 中提取所有卫星形容词并将它们保存到文本文件中?

How can I extract all satellite adjectives from WordNet NLTK and save them to a text file?

我正在尝试从 WordNet 中提取所有卫星形容词同义词集并将它们保存到文本文件中。请注意,卫星形容词在同义词集名称中表示为 's',例如“(fantastic.s.02)”。以下是我的代码:

def extract_sat_adjectives():
    sat_adj_counter = 0
    sat_adjectives = []
    for i in wn.all_synsets():
        if i.pos() in ['s']:
            sat_adj_counter +=1
            sat_adjectives = sat_adjectives + [i.name()]
    fo = open("C:\Users\Nora\Desktop\satellite_adjectives.txt", "wb")
    for x in sat_adjectives:
        fo.write("%s\n" % x)
    fo.close()


extract_sat_adjectives()

我得到的错误是:

TypeError: 'str' does not support the buffer interface  

如何将形容词保存到文本文件中?提前致谢。

该错误与编码错误和 str()

的组合有关
for x in sat_adjectives:
    fo.write("%s\n" % x)

更改为:

for x in sat_adjectives:
    fo.write(bytes("%s\n" % x, 'UTF-8'))