pandas 读取txt seq分隔符类型 engine指定引擎 header 不将第一行作为列名

untitled.txt 文本内容
One ---- I have a car.
Two ---- My name is Hany.

pandas 读取txt seq分隔符类型 engine指定引擎 header 不将第一行作为列名

 

df = pd.read_table('untitled.txt',sep=' \-\-\-\- ',engine = 'python',header = None)

注:其中的 seq 为正则表达式
需要指定 engine 为 python
根据文件的内容来确定是否需要 header

 

上一篇:LeetCode 575 Distribute Candies 解题报告


下一篇:如何搭建一个HTTPS服务端