.isspace()

hP3188941580's avatar
Published Oct 3, 2023
Contribute to Docs

The .isspace() string method takes in a string and returns True if the entire string is composed of whitespace characters, otherwise False.

Whitespace characters include:

  • Space (‘ ‘)
  • Horizontal tab (‘\t’)
  • Newline (‘\n’)
  • Vertical tab (‘\v’)

Syntax

some_str.isspace()

some_str is the string being checked for whitespace.

Example

The example below uses .isspace() to evaluate the string txt:

txt = " Welcome "
x = txt.isspace()
print(x)

The output will look like this:

False

Codebyte Example

The following example is runnable and checks if my_string consists entirely of whitespace characters:

Code
Output
Loading...

All contributors

Contribute to Docs

Learn Python on Codecademy