Python — How to check if a string only contains spaces

Python has a nice string method to check if the string only contains spaces, isspace.

' '.isspace()

will return True

I was converting xml to a dict, and found many multi space empty strings that I needed to test for.

Enjoy!

Leave a Comment