Python isidentifier() 方法用于检查字符串是否为有效标识符。如果字符串是有效标识符,则返回 True,否则返回 False。
Python 语言有自己的标识符定义,此方法使用它。
签名
isidentifier()
参数
不需要参数。
返回
它返回True或False。
让我们看一些 isidentifier() 方法的例子来理解它的函数。
Python 字符串 isidentifier() 方法示例 1
应用 isidentifier() 方法的简单示例,它返回 True。请参阅示例。
# Python isidentifier() method example
# Variable declaration
str = "abcdef"
# Calling function
str2 = str.isidentifier()
# Displaying result
print(str2)
输出:
True
Python 字符串 isidentifier() 方法示例 2
在这里,我们创建了各种标识符。有些返回 True,有些返回 False。请参阅下面的示例。
# Python isidentifier() method example
# Variable declaration
str = "abcdef"
str2 = "20xyz"
str3 = "$abra"
# Calling function
str4 = str.isidentifier()
str5 = str2.isidentifier()
str6 = str3.isidentifier()
# Displaying result
print(str4)
print(str5)
print(str6)
输出:
True False False
Python 字符串 isidentifier() 方法示例 3
这种方法在决策中很有用,因此可以与 if 语句一起使用。
# Python isidentifier() method example
# Variable declaration
str = "abcdef"
# Calling function
if str.isidentifier() == True:
print("It is an identifier")
else:
print("It is not identifier")
str2 = "$xyz"
if str2.isidentifier() == True:
print("It is an identifier")
else:
print("It is not identifier")
相关用法
- Python String isnumeric()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower()用法及代码示例
- Python String isdecimal()用法及代码示例
- 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 isidentifier() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。