标签: python pandas
我希望从第3列开始总共8列,并将它们转换为整数类型。它们是价值购买的基础。例如:“ 1436”,“ 12”等。
答案 0 :(得分:1)
检查
df.iloc[:,3:].replace({',': ''},regex=True).astype(int)