用Python编写程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Python编写程序相关的知识,希望对你有一定的参考价值。
编写Python程序,该程序中有梯形类和测试语句。要求如下:
(1)梯形类具有属性上底、下底、高和面积,具有返回面积的功能,在初始化方法中对上底、下底和高进行初始化。
(2)测试语句用来测试梯形类的功能。
倒数第二行为什么出错了呢
追答python大小写敏感,你是不是敲错字母了,或者把出错信息发一下
参考技术B 回答下载用于Windows系统的Python。 适用于Windows的Python解释器可以从Python网站免费下载...2.安装Python解释器。 大多数用户可以在不更改任何设置的情况下安装解释器。通过启用可用模块列表中的最后一个选项...3.安装文本编辑器。 虽然可以在“记事本”或“TextEdit”中创建Python程序,但是你会发现用专门的文本编辑器来读写代码要容易得...4.测试安装好的软件。 打开终端(Mac/Linux)或命令提示符(Windows),并输入 python ...
参考技术C 没有问题我可以,用Python编写WordCount程序任务
用Python编写WordCount程序任务
程序 |
WordCount |
输入 |
一个包含大量单词的文本文件 |
输出 |
文件中每个单词及其出现次数(频数),并按照单词字母顺序排序,每个单词和其频数占一行,单词和频数之间有间隔 |
- 编写map函数,reduce函数
- 将其权限作出相应修改
- 本机上测试运行代码
- 放到HDFS上运行
- 下载并上传文件到hdfs上
- 用Hadoop Streaming命令提交任务
#!/usr/bin/env python2 import sys for line in sys.stdin: line = line.strip() words = line.split() for word in words: print \'%s\\t%s\' % (word,1)
#!/usr/bin/env python2 from operator import itemgetter import sys current_word = None current_count= 0 word= None for line in sys.stdin: line = line.strip() word,count=line.split(\' /t\',1) try: count =int (count) except ValueError: continue if current_word ==word: current_count += count else: if current_word: print (current_word,cureent_count) current_count=count current_word =word if current_word==word: print (current_word,current_count)
设置权限
chomd a+x mapper.py
chomd a+x reducer.py
编写脚本
上传到hdfs
以上是关于用Python编写程序的主要内容,如果未能解决你的问题,请参考以下文章