一、Spark的安装
1、安装结果
2、Spark的环境配置
3、运行
4、测试
二、Python练习
1、代码截图
2、运行结果
3、源码
import stringfile1 = open('C:/Users/Administrator/R201906120171/Chenzhikun/sanguo.txt', 'r',encoding='UTF-8') txt = file1.read() txt.lower()
for ch in string.punctuation: txt = txt.replace(ch, " ") words = txt.split() result = {}
for word in words: result[word] = result.get(word, 0) + 1 items = list(result.items()) items.sort(key=lambda x: x[1], reverse=True)
for i in range(10): print(items[i]) file2 = open('result.txt', 'w')
for i in items: for j in i: file2.write(str(j)+" ") file2.write("\n")
file1.close() file2.close()
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。