将文件多行内容写入顺序表
时间: 2023-09-25 21:11:59 浏览: 32
顺序表插入
可以使用Python中的列表(list)来实现顺序表,然后读取文件内容,逐行添加到列表中即可。
例如,假设文件名为test.txt,文件内容如下:
```
hello
world
this is a test file
```
可以使用以下代码将文件内容写入顺序表中:
```python
# 创建空的顺序表
seq_list = []
# 打开文件并读取内容
with open('test.txt', 'r') as f:
# 逐行读取文件内容,并添加到顺序表中
for line in f:
seq_list.append(line.strip())
# 输出顺序表中的内容
print(seq_list)
```
输出结果为:
```
['hello', 'world', 'this is a test file']
```
其中,`strip()`函数用于去除每行内容的末尾换行符。
阅读全文