将文件中的二维字符串写入字符串数组中
时间: 2023-12-14 21:37:36 浏览: 69
写字符串到文本文件中
假设文件中的内容如下:
```
foo bar
hello world
test test
```
可以使用 Python 读取文件并将每行字符串添加到字符串数组中,示例代码如下:
```python
with open('file.txt', 'r') as f:
lines = f.readlines()
strings = [line.strip() for line in lines]
print(strings)
```
输出结果为:
```
['foo bar', 'hello world', 'test test']
```
其中,`readlines()` 方法用于读取文件中的每一行,`strip()` 方法用于去除每行字符串末尾的空格和换行符。最后将每行字符串添加到字符串数组中即可。
阅读全文