文艺老鼠

文章
9
资源
0
加入时间
2年10月21天

1248: Let the Balloon Rise

题目DescriptionContest time again! How excited it is to see balloons floating around. But to tell you a secret, the judges’ favorite time is guessing the most popular problem. When the contest is over, t

dataframe.read_excel导入某些数字型字段指定dtype失败的处理方法

dataframe导入csv中的数据型字段时,用dtype='str'可以强制转换成字符串,但是改成read_excel后,指定类型居然不起作用了,其他程序还是没问题,偏偏这次不行,没办法,只能另辟蹊径。用astype方法,即df["aaa"]=df["aaa"].astype("str"),成功解决,多了一行代码,又学会一招。...