编号0 2109011 2109012 2109013 210901求取出这一列前两位数字21,代码解决方法,一整列取值,不是一个字符串,谢谢
df.编号.astype(str).str.slice(0,2)
或
df.编号.astype(str).str[:2]