my_list=["one", "one two", "three"]
and I am generating a word cloud for this list by using
wordcloud = WordCloud(width = 1000, height = 500).generate(" ".join(my_list))
As I am converting all the items into string it is generating word cloud for
"one","two","three"
But I want to generate word cloud for the values, "one","one two","three"
help me for generating word cloud for items in a list