El método Python String isidentifier() se utiliza para comprobar si una string es un identificador válido o no. El método devuelve True si la string es un identificador válido; de lo contrario, devuelve False.
Sintaxis:
string.identificador()
Parámetros:
El método no toma ningún parámetro.
Valor devuelto:
El método puede devolver uno de los dos valores:
- Verdadero: cuando la string es un identificador válido.
- Falso: cuando la string no es un identificador válido.
Ejemplo: Cómo funciona isidentifier()
Python3
# 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())
Producción:
False True False True False
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA