Python isdigit
时间: 2023-11-19 11:02:59 浏览: 154
Python库 | IGitt-0.2.0.dev20160302105332.tar.gz
`isdigit()` 是 Python 中的一个字符串方法,用于检查字符串是否只包含数字字符。如果字符串中所有字符都是数字,则该方法返回 True;否则,返回 False。例如:
```python
s1 = "1234"
s2 = "1A3B"
s3 = "12.34"
print(s1.isdigit()) # True
print(s2.isdigit()) # False
print(s3.isdigit()) # False
```
阅读全文