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!
Yuji's Increasingly Infrequent Ramblings
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!