如果字符串中的所有字符都是数字,则 Python isdigit() 方法返回 True。如果字符串中没有数字字符,则返回 False。
签名
isdigit()
参数
不需要参数。
返回
它返回True或False。
让我们看一些 isdigit() 方法的例子来理解它的函数。
Python 字符串 isdigit() 方法示例 1
使用 isdigit() 方法进行数字测试的简单示例。
# Python isdigit() method example
# Variable declaration
str = '12345'
# Calling function
str2 = str.isdigit()
# Displaying result
print(str2)
输出:
True
Python 字符串 isdigit() 方法示例 2
仅当所有字符都是数字时才返回 true。请参阅下面的示例。
# Python isdigit() method example
# Variable declaration
str = "12345"
str3 = "120-2569-854"
# Calling function
str2 = str.isdigit()
str4 = str3.isdigit()
# Displaying result
print(str2)
print(str4)
输出:
True False
Python 字符串 isdigit() 方法示例 3
我们可以在编程中使用它来检查字符串是否包含数字。
# Python isdigit() method example
# Variable declaration
str = "123!@#$"
if str.isdigit() == True:
print("String is digit")
else:
print("String is not digit")
输出:
String is not digit
相关用法
- Python String isdecimal()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String join()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
注:本文由纯净天空筛选整理自 Python String isdigit() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。