1

我根据自己的需要修改了以下脚本(原文在完全可解析字典/词库中找到,由 samplebias [在 samplebias,非常有用,谢谢 :)]):

import textwrap
from nltk.corpus import wordnet as wn

POS = {
    'v': 'verb', 'a': 'adjective', 's': 'satellite adjective', 
    'n': 'noun', 'r': 'adverb'}

def info(word, pos=None):
    for i, syn in enumerate(wn.synsets(word, pos)):
        syns = [n.replace('_', ' ') for n in syn.lemma_names]
        ants = [a for m in syn.lemmas for a in m.antonyms()]
        ind = ' '*12
        defn= textwrap.wrap(syn.definition, 64)
        print 'sense %d (%s)' % (i + 1, POS[syn.pos])
        n1=str('definition: ' + ('\n' + ind).join(defn))
        n2=str('  synonyms:', ', '.join(syns))
        if ants:
            n3=str('  antonyms:', ', '.join(a.name for a in ants))
        if syn.examples:
            n4=str('  examples: ' + ('\n' + ind).join(syn.examples))
        try:
            resp = ("From dictionary:\n%s\n%s\n%s\n%s") %(n1, n2, n3, n4)
        except:
            try:
                resp = ("From dictionary:\n%s\n%s\n%s") %(n1, n2, n3)
            except:
                try:
                    resp = ("From dictionary:\n%s\n%s") %(n1, n2)
                except:
                    resp = ("Data not available...")
        print
        return resp

但是,我可以说我没有很好地修改它,因为它只是包装在 try/except 块中。但是我一生都想不出更好的方法来做到这一点(仍然以抽象的方式学习python)。我需要将它格式化为一个变量,其中包含 \n 作为每一行的分隔符,因为它被写入文件。有什么想法可以让我做得更好,并且没有似乎正在发生的列表事件吗?

--定义日出

来自字典:

定义:第一缕曙光

('同义词:','黎明,黎明,早晨,极光,第一道曙光,破晓,破晓,破晓,黎明,日出,日出,鸡鸣')

('反义词:','日落')

示例:我们在黎明前起床,他们一直聊到早上


谢谢!:)

4

1 回答 1

0

无需为每一行创建一个字符串,只需从一开始就将您的文本附加到输出变量。

resp = 'From dictionary:\ndefinition: ' + ('\n' + ind).join(defn) +'\n'
resp += '  synonyms:' + ', '.join(syns) +'\n'
if ants:
    resp += '  antonyms:' + ', '.join(a.name for a in ants)) +'\n'
if syn.examples:
    resp += '  examples: ' + ('\n' + ind).join(syn.examples)) +'\n'
于 2012-04-27T11:44:50.250 回答