有一个dataframe中的一列数据,
xzqhdm
| 110115501001 | 
| 110106004061 | 
| 110113005001 | 
| 110106202203 | 
| 110105032201 | 
| 110107003029 | 
| 110105010026 | 
原始数据是字符型,我想把它转换成整数型,
xzqhdm.astype(int)[size=13.3333px]但是结果显示OverflowError
: Python int too large to convert to C long我考虑选取len(),但是提示'numpy.int32' object is not iterable,我这里有个循环
请问有什么较好途径把这列变成int型?谢谢