Python,为什么打印功能没有打印,有什么不对吗?

时间:2016-12-16 03:13:16

标签: python python-2.7

有什么问题吗?当我使用print函数时,有时它可以工作,但有时候不行。我很迷惑。以下是我的代码,并且是在jupyter notebook(ipython)中输入,之前定义的每个变量,都没有变量。也没有错误输出。但是没有结果。

from __future__ import print_function

print("Top terms per cluster:")
print()
#sort cluster centers by proximity to centroid
order_centroids = km.cluster_centers_.argsort()[:, ::-1] 

for i in range(num_clusters):
    print("Cluster %d words:" % i, end='')

    for ind in order_centroids[i, :6]: #replace 6 with n words per cluster
        print(' %s' % vocab_frame.ix[terms[ind].split(' ')].values.tolist()[0][0].encode('utf-8', 'ignore'), end=',')

    print() #add whitespace
    print() #add whitespace

    print("Cluster %d labels:" % i, end='')
    for title in frame.ix[i]['label'].values.tolist():
        print(' %s,' % title, end='')
    print() #add whitespace
    print() #add whitespace

0 个答案:

没有答案