TheDeveloperBlog.com

Home | Contact Us

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

Python String | isspace() method with Examples

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

Python isspace() method is used to check space in the string. It returna true if there are only whitespace characters in the string. Otherwise it returns false. Space, newline, and tabs etc are known as whitespace characters and are defined in the Unicode character database as Other or Separator.

Signature

isspace()

Parameters

No parameter is required.

Return

It returns either True or False.

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

Python String isspace() Method Example 1

# Python isspace() method example
# Variable declaration
str = " " # empty string
# Calling function
str2 = str.isspace()
# Displaying result
print(str2)

Output:

True

Python String isspace() Method Example 2

# Python isspace() method example
# Variable declaration
str = "ab cd ef" # string contains spaces
# Calling function
str2 = str.isspace()
# Displaying result
print(str2)

Output:

False

Python String isspace() Method Example 3

isspace() method returns true for all whitespaces like:

  • ' ' - Space
  • '\t' - Horizontal tab
  • '\n' - Newline
  • '\v' - Vertical tab
  • '\f' - Feed
  • '\r' - Carriage return

# Python isspace() method example
# Variable declaration
str = " " # string contains space
if str.isspace() == True:
    print("It contains space")
else:
    print("Not space")
str = "ab cd ef \n"
if str.isspace() == True:
    print("It contains space")
else:
    print("Not space")
str = "\t \r \n"
if str.isspace() == True:
    print("It contains space")
else:
    print("Not space")

Output:

It contains space
Not space
It contains space

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