当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String isidentifier()用法及代码示例


如果字符串是 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 isidentifier()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。