Table of Contents
The isspace() method returns True if there are only whitespace characters in the string. If not, it return False.
Characters that are used for spacing are called whitespace characters. For example: tabs, spaces, newline, etc.
The syntax of isspace()
is:
string.isspace()
1. isspace() Parameters
isspace()
method doesn’t take any parameters.
2. Return Value from isspace()
isspace()
method returns:
True
if all characters in the string are whitespace charactersFalse
if the string is empty or contains at least one non-printable character
3. Example 1: Working of isspace()
s = ' \t' print(s.isspace()) s = ' a ' print(s.isspace()) s = '' print(s.isspace())
Output
True False False
4. Example 2: How to use isspace()?
s = '\t \n' if s.isspace() == True: print('All whitespace characters') else: print('Contains non-whitespace characters') s = '2+2 = 4' if s.isspace() == True: print('All whitespace characters') else: print('Contains non-whitespace characters.')
Output
All whitespace characters Contains non-whitespace characters
Related posts:
Python object()
Python Program to Remove Duplicate Element From a List
Python Inheritance
Python locals()
String Set Queries
Python hasattr()
Python next()
Statistical Methods for Machine Learning - Disconver how to Transform data into Knowledge with Pytho...
Python Program to Find the Size (Resolution) of a Image
Python Program to Convert Kilometers to Miles
Python Dictionary keys()
Java String to InputStream
Python Program to Convert String to Datetime
Python String replace()
Converting a List to String in Java
Python File I/O Operation
Python Program to Merge Two Dictionaries
Python Program to Find Hash of File
Java – Generate Random String
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python Closures
Python Program to Print the Fibonacci sequence
Python isinstance()
Python Program to Check Prime Number
Python String lower()
Python frozenset()
Convert String to Byte Array and Reverse in Java
Java InputStream to String
Python Artificial Intelligence Project for Beginners - Joshua Eckroth
Python Program to Split a List Into Evenly Sized Chunks
Python String rindex()
Python Operator Overloading