Python 集合 集合是唯一的,无序的s={10,30,20,50,10,20}print (s) #{10, 20, 50, 30}阅读全文 Python 2022-04-21 评论 339 次浏览
Python 随手记 print(ord('朱')) #26417print(chr(26417)) #朱print(eval('3+4')) #7阅读全文 Python 2022-04-17 评论 319 次浏览
有意思的包 词云cut_list=jieba.lcut(str)new_str=' '.join(cut_list)word_cloud=WordCloud(font_path='msyh.ttf').generate(new_str)word_cloud.to_file('test.png') Python 2022-04-16 评论 297 次浏览
pip install出现错误 pip install出现错误:Microsoft Visual C++ 14.0 is required. Get it with “Microsoft Visual C++ Build Tools转至如下网站下载whlhttps://www.lfd.uci.edu/~gohlke/pythonlibs/ Python 2022-04-16 评论 290 次浏览