gpt4 book ai didi

python - 在 pandas 中读取文本文件,分隔符作为换行符 (\n),行终止符作为两个换行符 (\n\n)

转载 作者:行者123 更新时间:2023-11-28 19:47:06 24 4
gpt4 key购买 nike

我有一个格式的文本文件:

数据.txt

2
8
4

3
1
9

6
5
7

如何将其读入 Pandas 数据框

  0 1 2
0 2 8 4
1 3 1 9
2 6 5 7

最佳答案

试试这个:

with open(filename, 'r') as f:
data = f.read().replace('\n',',').replace(',,','\n')

In [7]: pd.read_csv(pd.compat.StringIO(data), header=None)
Out[7]:
0 1 2
0 2 8 4
1 3 1 9
2 6 5 7

关于python - 在 pandas 中读取文本文件,分隔符作为换行符 (\n),行终止符作为两个换行符 (\n\n),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47845900/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com