Python實現生成一個單詞的圓形詞雲

效果 實現 打開IDLE,新建文件singleWord.py import numpy as np import matplotlib.pyplot as plt from wordcloud import WordCloud text = "Love" x, y = np.ogrid[:300, :300] mask = (x - 150) ** 2 + (y - 150) ** 2 >
相關文章
相關標籤/搜索