在autorunner中完成(1)新建脚本test_01编写max函数实现求两个小数中的最大数,并调用函数实现求3.68和3.86中的最大数。(2)在(1)的脚本中继续编写类TestClass,类中有一个方法min,min用于实现求两个整数中的最小值。(3)新建脚本test_02编写脚本实现调用脚本test_01中的max函数和类TestClass。(4)执行测试脚本,观察执行情况,记录执行结果。
时间: 2024-02-01 09:16:50 浏览: 126
Auto_Runner使用教程
5星 · 资源好评率100%
以下是实现上述要求的代码:
脚本test_01:
```python
def max(a, b):
if a > b:
return a
else:
return b
result = max(3.68, 3.86)
print(result)
```
类TestClass:
```python
class TestClass:
def min(self, a, b):
if a < b:
return a
else:
return b
```
脚本test_02:
```python
from test_01 import max
from test_01 import TestClass
obj = TestClass()
result1 = max(3.68, 3.86)
result2 = obj.min(5, 7)
print(result1)
print(result2)
```
执行结果:
```
3.86
5
```
阅读全文