根据以下代码, 描述错误的选项是? ( )
import wordcloud
txt="what's your name?"
w=wordcloud.WordCloud(background_color="white")
w.generate(txt)
w.to_file('px.png')
background_color指定词云图片的背景颜色, 默认为白色
generate 向 WordCloud 对象中加载文本 txt
to_file 将词云输出为图像文件,. png 或. jpg 格式
wordcloud.WordCloud() 代表一个文本对应的词云