已知文件data.txt存放了两个整数。其内容如下:78 56。现要求将文件中的这两个数取出来后进行算式相加,并将计算结果保存至out。
时间: 2024-02-24 17:56:22 浏览: 83
读取txt文件中的数字并输出
好的,以下是代码实现:
```python
# 读取文件中的整数
with open("data.txt", "r") as f:
num1, num2 = map(int, f.read().strip().split())
# 计算结果
result = num1 + num2
# 将计算结果保存至 out 文件中
with open("out.txt", "w") as f:
f.write(str(result))
# 打印输出计算结果
with open("out.txt", "r") as f:
print(f.read())
```
其中,data.txt 的内容应该为:
```
78 56
```
最后的输出结果应该为:
```
134
```
阅读全文