我正在尝试删除或删除我正在使用 Pandas 读取的数据的标题。一个文件有一个标题,另一个没有,但我希望能够检查标题然后将其删除。
到目前为止,我已经尝试在 read_csv 函数中使用 header=None
from pathlib import Path
import pandas as pd
def _reader(fname):
return pd.read_csv(fname, sep="\t", header=None)
folder = Path("C:\\Me\\Project1")
data = pd.concat([
_reader(txt)
for txt in folder.glob("*.txt")
])
我收到以下错误:TypeError: must be str, not int
我的两个文件如下所示:
文件1.txt
ISIN AVL_QTY
BAD 90000
AAB 8550000
BAD 173688
BAD 360000
BAD 90000
BAD 810000
BAD 900000
BAD 900000
文件2.txt
TEST 543
HELLO 555
STOCK 900
CODE 785
慕容森
慕姐8265434
慕雪6442864
相关分类