Table of Contents
The isidentifier() method returns True if the string is a valid identifier in Python. If not, it returns False.
The syntax of isidentifier() is:
string.isidentifier()
1. isidentifier() Paramters
The isidentifier() method doesn’t take any parameters.
2. Return Value from isidentifier()
The isidentifier() method returns:
- True if the string is a valid identifier
- False if the string is not a invalid identifier
3. Example 1: How isidentifier() works?
str = 'Python' print(str.isidentifier()) str = 'Py thon' print(str.isidentifier()) str = '22Python' print(str.isidentifier()) str = '' print(str.isidentifier())
Output
True False False False
Visit this page to learn what is valid identifier in Python?
4. Example 2: More Example of 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.')
Output
root33 is a valid identifier. 33root is not a valid identifier. root 33 is not a valid identifier.
Related posts:
Python divmod()
Converting String to Stream of chars
Intelligent Projects Using Python - Santanu Pattanayak
Python Set symmetric_difference()
Python issubclass()
Python Exception Handling Using try, except and finally statement
Python any()
Python enumerate()
Python @property decorator
Python Program to Add Two Matrices
Python *args and **kwargs
Python Tuple
Python classmethod()
Python format()
Python len()
Java Program to Permute All Letters of an Input String
Python RegEx
Python Machine Learning Cookbook - Practical solutions from preprocessing to Deep Learning - Chris A...
Python Dictionary pop()
Python Program to Solve Quadratic Equation
Python Errors and Built-in Exceptions
Java – String to Reader
Python Package
String Initialization in Java
Python String encode()
Python String strip()
Python Dictionary values()
Python Program to Find the Square Root
Python Program to Delete an Element From a Dictionary
Python Program to Print all Prime Numbers in an Interval
Python List
Python hash()