答:可以通过 isdigit 方法,例子如下 s1 = "12223".isdigit() print(s1) s2 = "12223a".isdigit() print(s2) 结果如下: True False 360截图20191103222218069.jpg