Python isdigit() 方法:判断字符串是否只包含数字
isdigit 是 Python 中的字符串方法,用于检查字符串中是否只包含数字字符。如果字符串只包含数字字符,则该方法返回 True,否则返回 False。该方法适用于 Python 2 和 Python 3 版本。
例如:
s = '12345'
print(s.isdigit()) # True
s = '12.34'
print(s.isdigit()) # False
在第一个示例中,字符串 s 只包含数字字符,因此 isdigit 方法返回 True。在第二个示例中,字符串 s 包含小数点字符,因此 isdigit 方法返回 False。
原文地址: https://www.cveoy.top/t/topic/nB2V 著作权归作者所有。请勿转载和采集!