如果字符串是 Python 中的有效标识符,isidentifier() 方法将返回 True。如果不是,则返回 False。
用法:
string.isidentifier()
isidentifier() 参数
isidentifier()
方法不接受任何参数。
返回:
isidentifier()
方法返回:
True
如果字符串是有效标识符False
如果字符串不是无效标识符
示例 1:isidentifier() 如何工作?
str = 'Python'
print(str.isidentifier())
str = 'Py thon'
print(str.isidentifier())
str = '22Python'
print(str.isidentifier())
str = ''
print(str.isidentifier())
输出
True False False False
访问此页面以了解what is valid identifier in Python?
示例 2:isidentifier() 的更多示例
str = 'root33'
if str.isidentifier() == True:
print(str, 'is a valid identifier.')
else:
print(str, 'is not a valid identifier.')
str = '33root'
if str.isidentifier() == True:
print(str, 'is a valid identifier.')
else:
print(str, 'is not a valid identifier.')
str = 'root 33'
if str.isidentifier() == True:
print(str, 'is a valid identifier.')
else:
print(str, 'is not a valid identifier.')
输出
root33 is a valid identifier. 33root is not a valid identifier. root 33 is not a valid identifier.
相关用法
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rpartition()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
注:本文由纯净天空筛选整理自 Python String isidentifier()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。