python从10个数中找出最大值和最小值,并写入data.txt中
时间: 2024-05-07 13:20:40 浏览: 203
C#求n个数中最大值和最小值的方法
可以使用Python内置的`max()`和`min()`函数来找出列表中的最大值和最小值,然后使用`open()`函数打开文件,再使用`write()`函数将数据写入文件中。
代码示例:
```python
# 定义一个包含10个数字的列表
nums = [4, 8, 2, 10, 6, 7, 1, 3, 5, 9]
# 找出最大值和最小值
max_num = max(nums)
min_num = min(nums)
# 将数据写入文件
with open('data.txt', 'w') as f:
f.write('最大值:{}\n'.format(max_num))
f.write('最小值:{}'.format(min_num))
```
执行完上述代码后,会在当前目录下生成一个名为`data.txt`的文件,文件内容如下:
```
最大值:10
最小值:1
```
阅读全文