标签: python data-cleaning
我有一个数据集,其中所有值都在一个特定列下。我如何将值分配给每一列。下面是屏幕截图。 enter image description here
建议。谢谢Chethan
答案 0 :(得分:0)
听起来像是定界符的问题...
在您的pandas.read_csv命令中...如果您使用的是熊猫,请尝试sep =';'作为参数。
pandas.read_csv(yourfile, sep=';')
在此处查看文档:{{3}}