當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。