python - 如何在 Pandas 中读取奇怪的 csv 文件?

标签 python csv pandas

我想阅读下面显示的示例 csv 文件

--------------
 |A|B|C| 
--------------
 |1|2|3| 
--------------
 |4|5|6| 
--------------
 |7|8|9| 
--------------

我试过了

pd.read_csv("sample.csv",sep="|")

但是效果不是很好。

如何读取此 csv?

最佳答案

您可以将参数 comment 添加到 read_csv然后通过 dropna 删除带有 NaN 的列:

import pandas as pd
import io

temp=u"""--------------
|A|B|C|
--------------
|1|2|3|
--------------
|4|5|6|
--------------
|7|8|9|
--------------"""
#after testing replace io.StringIO(temp) to filename
df = pd.read_csv(io.StringIO(temp), sep="|", comment='-').dropna(axis=1, how='all')

print (df)
   A  B  C
0  1  2  3
1  4  5  6
2  7  8  9

更通用的解决方案:

import pandas as pd
import io

temp=u"""--------------
|A|B|C|
--------------
|1|2|3|
--------------
|4|5|6|
--------------
|7|8|9|
--------------"""
#after testing replace io.StringIO(temp) to filename
#separator is char which is NOT in csv
df = pd.read_csv(io.StringIO(temp), sep="^", comment='-')

#remove first and last | in data and in column names
df.iloc[:,0] = df.iloc[:,0].str.strip('|') 
df.columns = df.columns.str.strip('|')
#split column names
cols = df.columns.str.split('|')[0]
#split data
df = df.iloc[:,0].str.split('|', expand=True)
df.columns = cols
print (df)
   A  B  C
0  1  2  3
1  4  5  6
2  7  8  9

关于python - 如何在 Pandas 中读取奇怪的 csv 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39462978/

相关文章:

python - Scrapy - 如果 response.status == 404 则跳出循环

python - SQLAlchemy:@property 映射?

php - 显示结果然后提供导出到 .csv 的选项?

python - 在 python 中使用 .loc 进行选择

python - 查询 SQL Server 数据库时结果对象不返回行

python - ctypes 与 C 扩展

python - conda 构建无法识别 Conda 软件包?

r - 从网络源获取 R 中的数据作为数据框

Python ASCII 编解码器在写入 CSV 时无法编码字符错误

python - 如何在 Python Pandas 中的两个值之间选择 DataFrame 中的行?