TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

Python String | isidentifier() method with Examples

Python String isidentifier() method with Examples on capitalize(), center(), count(), encode(), find(), format(), index(), join(), lower(), ljust(), isupper(), istitle(), isspace(), isprintable(), isnumeric(), islower() etc.

<< Back to PYTHON

Python String isidentifier() Method

Python isidentifier() method is used to check whether a string is a valid identifier or not. It returns True if the string is a valid identifier otherwise returns False.

Python language has own identifier definition which is used by this method.

Signature

isidentifier()

Parameters

No parameter is required.

Return

It returns either True or False.

Let's see some examples of isidentifier() method to understand it's functionalities.

Python String isidentifier() Method Example 1

A simple Example to apply isidentifier() method, it returns True. See the example.

# Python isidentifier() method example
# Variable declaration
str = "abcdef"
# Calling function
str2 = str.isidentifier()
# Displaying result
print(str2)

Output:

True

Python String isidentifier() Method Example 2

Here, we have created variety of identifiers. Some returns True and some False. See the example below.

# Python isidentifier() method example
# Variable declaration
str = "abcdef"
str2 = "20xyz"
str3 = "$abra"
# Calling function
str4 = str.isidentifier()
str5 = str2.isidentifier()
str6 = str3.isidentifier()
# Displaying result
print(str4)
print(str5)
print(str6)

Output:

True
False
False

Python String isidentifier() Method Example 3

This method is useful in decision making therfore can be used with if statement.

# Python isidentifier() method example
# Variable declaration
str = "abcdef"
# Calling function
if str.isidentifier() == True:
    print("It is an identifier")
else:
    print("It is not identifier")
str2 = "$xyz"
if str2.isidentifier() == True:
    print("It is an identifier")
else:
    print("It is not identifier")

Next TopicPython Strings




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf