itp simple calculator:您的第一个Python项目! 让我们建立一个测试驱动的计算器 源码
简单计算器 欢迎来到您的第一个大项目! 目标是使用到目前为止所学的知识制作一个简单的计算器! 你的任务是落实在代码calculator.py ; 请注意,我们只为函数保留了占位符。 您的工作是编写这些函数的主体。 步骤1: 添加 减去 乘 我们在这里设置了3个您需要完成的功能。 这些非常简单明了,不应给您带来太多麻烦,请回想一下有关操作员的课程! 要运行测试,请在命令行中使用以下命令: # For the add() function $ py.test test_add.py # For the subtract() function $ py.test test_subtract.py # For the mulitply() function $ py.test test_multiply.py 第2步 划分 您会在这里注意到,除法是唯一有两个测试的函数-这是因为您需要编写一些
文件列表
itp-simple-calculator-master.zip
(预估有个12文件)
itp-simple-calculator-master
test_multiply.py
107B
test_add.py
93B
test_power.py
150B
requirements.txt
13B
test_divide.py
191B
.travis.yml
313B
test_square.py
98B
README.md
2KB
test_subtract.py
108B
暂无评论