我对 Python 有疑问。我试图了解哪些是存储在我发现是生成器的对象中的信息。我对 Python 一无所知,但我必须了解这段代码的工作原理才能将其转换为 Java。代码如下:
def segment(text):
"Return a list of words that is the best segmentation of text."
if not text: return []
candidates = ([first]+segment(rem) for first,rem in splits(text))
return max(candidates, key=Pwords)
def splits(text, L=20):
"Return a list of all possible (first, rem) pairs, len(first)<=L."
pairs = [(text[:i+1], text[i+1:]) for i in range(min(len(text), L))]
return pairs
def Pwords(words):
"The Naive Bayes probability of a sequence of words."
productw = 1
for w in words:
productw = productw * Pw(w)
return productw
虽然我了解 Pwords 和 splits 方法是如何工作的(函数 Pw(w) 只是从矩阵中获取一个值),但我仍然试图了解“segment”方法中的“candidates”对象是如何构建的以及什么它包含。以及“max()”函数如何分析这个对象。
我希望有人可以帮助我,因为我在这里没有找到任何可行的解决方案来打印这个对象。非常感谢大家。毛罗。