TheDeveloperBlog.com

Home | Contact Us

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

Python String | isprintable() method with Examples

Python String isprintable() 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 isprintable() Method

Python isprintable() method returns True if all characters in the string are printable or the string is empty. It returns False if any character in the string is Nonprintable.

Signature

isprintable()

Parameters

No parameter is required.

Return

It returns either True or False.

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

Python String isprintable() Method Example 1

It is a simple example that prints True, if the string is printable. See the example below.

# Python isprintable() method example
# Variable declaration
str = "Hello, TheDeveloperBlog"
# Calling function
str2 = str.isprintable()
# Displaying result
print(str2)

Output:

True

Python String isprintable() Method Example 2

Here, we are using some other characters like newline and tabs in the string. See the results of the example.

# Python isprintable() method example
# Variable declaration
str = "Hello, TheDeveloperBlog"
str2 = "Learn Java here\n"
str3 = "\t Python is a programming language"
# Calling function
str4 = str.isprintable()
str5 = str2.isprintable()
str6 = str3.isprintable()
# Displaying result
print(str4)
print(str5)
print(str6)

Output:

True
False
False

Python String isprintable() Method Example 3

Testing different-different string values which contains special chars too. In case of special chars, method returns False.

# Python isprintable() method example
# Variable declaration
str = "Hello, TheDeveloperBlog"
if str.isprintable() == True:
    print("It is printable")
else:
    print("Not printable")
str = "$Hello@TheDeveloperBlog#"    # Special Chars
if str.isprintable() == True:
    print("It is printable")
else:
    print("Not printable")
str = "Hello\nTheDeveloperBlog"
if str.isprintable() == True:
    print("It is printable")
else:
    print("Not printable")

Output:

It is printable
It is printable
Not printable

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