读取csv文件时删除前导零

时间:2018-08-03 07:27:54

标签: python pandas leading-zero

我有一个看起来像这样的CSV文件-

return author?.save(flush: true, failOnError: true)

当我使用 Location ID Location Name 3543459 A 20541 B C320 C ... .. 读取文件时,会得到类似的内容-

pd.read_csv

如何避免前导零?我进行了一些研究,我可能发现的所有问题都基于在df中产生前导零。

3 个答案:

答案 0 :(得分:2)

使用str.lstrip进行后期处理:

df['Location ID'] = df['Location ID'].str.lstrip('0')

答案 1 :(得分:1)

我在行下面有混合类型..

final defaultStyle = TextStyle(
  fontFamily: 'packages/handwriter/FancyHandwriting',
  fontSize: 130,
);

答案 2 :(得分:0)

df['Location ID'] = df['Location ID'].apply(lambda x: x.lstrip('0'))