str.isspace()
NA
#!/usr/bin/python3 str = " " print (str.isspace()) str = "This is string example....wow!!!" print (str.isspace())
True False