摘要: 准备将键值对中的键与值对调,结果第10行出了bug,显示"tuple parameter unpacking is not supported" 解决方法:将map(lambda(word,count) : (count,word)) 改为 map(lambda word_count : (word 阅读全文
posted @ 2018-05-22 15:15 Octopuslnlzy 阅读(1755) 评论(0) 推荐(0) 编辑