Python, pandas 取一列的前两位数字?

编号
0 210901
1 210901
2 210901
3 210901

求取出这一列前两位数字21,代码解决方法,一整列取值,不是一个字符串,谢谢

df.编号.astype(str).str.slice(0,2)

df.编号.astype(str).str[:2]

温馨提示:答案为网友推荐,仅供参考
第1个回答  2021-12-05
df.编号.astype(str).str.slice(0,2)

df.编号.astype(str).str[:2]
相似回答