如果字符串是Python中的有效標(biāo)識符,則isidentifier()方法返回True。如果不是,則返回False。
isidentifier()的語法為:
string.isidentifier()
isidentifier()方法不帶任何參數(shù)。
isidentifier()方法返回:
True 如果字符串是有效的標(biāo)識符
False 如果字符串不是有效的標(biāo)識符
str = 'Python' print(str.isidentifier()) str = 'Py thon' print(str.isidentifier()) str = '22Python' print(str.isidentifier()) str = '' print(str.isidentifier())
運行該程序時,輸出為:
True False False False
訪問此頁面以了解什么是Python中的有效標(biāo)識符?
str = 'root33' if str.isidentifier() == True: print(str, '是有效的標(biāo)識符。') else: print(str, '不是有效的標(biāo)識符。') str = '33root' if str.isidentifier() == True: print(str, '是有效的標(biāo)識符。') else: print(str, '不是有效的標(biāo)識符。') str = 'root 33' if str.isidentifier() == True: print(str, '是有效的標(biāo)識符。') else: print(str, '不是有效的標(biāo)識符。')
運行該程序時,輸出為:
root33 是有效的標(biāo)識符。 33root 不是有效的標(biāo)識符。 root 33 不是有效的標(biāo)識符。