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


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


Python的此内置函数用于检查字符串是否为有效标识符。如果字符串是有效的标识符,则该方法返回True,否则返回False。
用法:

string.isidentifier()

参数:


The method does not take any parameters

返回值:

The method can return one of the two values:

  • True: When the string is a valid identifier.
  • False: When the string is not a valid identifier.
  • 以下程序显示了该方法的用法原理。

    # Python code to illustrate the working of isidentifier() 
      
    # String with spaces 
    string = "Geeks for Geeks"
    print(string.isidentifier()) 
      
    # A Perfect identifier 
    string = "GeeksforGeeks"
    print(string.isidentifier()) 
      
    # Empty string 
    string = "" 
    print(string.isidentifier()) 
      
    # Alphanumerical string 
    string = "Geeks0for0Geeks"
    print(string.isidentifier()) 
      
    # Beginning with an integer 
    string = "54Geeks0for0Geeks"
    print(string.isidentifier())

    输出:

    False
    True
    False
    True
    False
    


    相关用法


    注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 Python String | isidentifier()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。