欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用pandas导入csv文件,多列成一列的解决方案

程序员文章站 2022-05-28 12:45:14
...
dtype = {"证券代码": str}
df = pd.read_csv(path, header=1, encoding="GB18030", parse_dates=True, dtype=dtype, sep='\s+') 

分隔符用sep='\s+',完美解决此问题

相关标签: python python csv