我想在终端中为句子着色,以便名词为蓝色,动词为绿色。其他一切都将是黑色的。
到目前为止,我尝试为此目的使用nltk
和模块。colorama
import nltk
from colorama import Fore
此代码将找出名词和动词,因此动词是VB
orVBD
和名词是NN
。
s = nltk.word_tokenize(sample_sentence)
tagged_text = nltk.pos_tag(s)
print tagged_text
[('Stately', 'RB'), (',', ','), ('plump', 'VB'), ('Buck', 'NNP'), ('Mulligan', 'NNP'), ('came', 'VBD'), ('from', 'IN'), ('the', 'DT'), ('stairhead', 'NN'), (',', ','), ('bearing', 'VBG'), ('a', 'DT'), ('bowl', 'NN'), ('of', 'IN'), ('lather', 'NN'), ('on', 'IN'), ('which', 'WDT'), ('a', 'DT'), ('mirror', 'NN'), ('and', 'CC'), ('a', 'DT'), ('razor', 'NN'), ('lay', 'NN'), ('crossed', 'VBD'), ('.', '.')]
当我想打印彩色文本时,我将使用:
print Fore.BLUE + some_noun
print Fore.GREEN + some_verb
print Fore.BLACK + something_else
我在打印句子时遇到问题。您将如何循环tagged_text
以使其打印未sample_sentence
更改的内容(仅应用所需的颜色)?