python如何判定字符串的前几个字符是不是数字

2024-12-26 05:04:35
推荐回答(1个)
回答1:

str="123abcd"
str[:3].isdigit()
判断字符串前面3个字符是不是数字
先用[:位置值]切片,然后用isdigit判断是否数字