pandas.core.series.Series - smart1004/doc GitHub Wiki
pandas.core.series.Series
Series.tolist()
result_cosine <-- Series
word_count = list(zip(result_cosine.index.tolist(),result_cosine.values.tolist()))
list = [df.columns[:,].values.astype(str).tolist()] + [[index] + vals for index,value in zip(df.index.tolist(),df.values.tolist())]