您好!欢迎访问家园网-www.jy.wang!

家园网

关于python:如何从数据框中保存CSV文件,以使数字中的零保留在列中?

网络 作者:本站 点击:
在读取csv文件时,将dtype指定为字符串,如下所示:

# if you are reading data with leading zeros
candidatos_2014 = pd.read_csv('candidatos_2014.csv', dtype ='str')

这里的括号里添加的dtype ='str'就是指定为字符串的意思

 
标签: