Answers for "python if contains space"

-1

how to check if a string contains spaces in python

#isspace() is a built-in method used for string handling
string = "My name is"
print(string.isspace())
#It will print True

string = "Hello"
print(string.isspace())
#It will print True
Posted by: Guest on July-14-2021

Code answers related to "python if contains space"

Python Answers by Framework

Browse Popular Code Answers by Language