Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -107,13 +107,13 @@ for pertenence, sentence in zip(corpus_lsa, sentences): | ... | @@ -107,13 +107,13 @@ for pertenence, sentence in zip(corpus_lsa, sentences): |
107 | #print "%s\t\t%s" % (pertenence, sentence.split("\t")[0]) | 107 | #print "%s\t\t%s" % (pertenence, sentence.split("\t")[0]) |
108 | p=[dict(pertenence)[x] if x in dict(pertenence) else 0.0 | 108 | p=[dict(pertenence)[x] if x in dict(pertenence) else 0.0 |
109 | for x in xrange(n_topics)] | 109 | for x in xrange(n_topics)] |
110 | - print "%s %s" % ("".join(sentence.split("\t")[0].split()), | 110 | + print("%s %s" % ("".join(sentence.split("\t")[0].split()), |
111 | - "".join(str(p)[1:].strip("]").split(",")) ) | 111 | + "".join(str(p)[1:].strip("]").split(",")) )) |
112 | else: | 112 | else: |
113 | if n<n_docs: | 113 | if n<n_docs: |
114 | pertenence=[dict(pertenence)[x] if x in dict(pertenence) else 0.0 | 114 | pertenence=[dict(pertenence)[x] if x in dict(pertenence) else 0.0 |
115 | for x in xrange(n_topics)] | 115 | for x in xrange(n_topics)] |
116 | - print "%s\t\t%s" % (pertenence, sentence) | 116 | + print("%s\t\t%s" % (pertenence, sentence)) |
117 | n+=1 | 117 | n+=1 |
118 | else: | 118 | else: |
119 | break | 119 | break | ... | ... |
-
Please register or login to post a comment