Python isspace()方法
isspace()方法檢查字符串是否包含空格。
語法
以下是isspace()方法的語法:
str.isspace()
參數
-
NA
返回值
如果有字符串中隻有空白字符並且至少有一個字符此方法返回true,否則返回false。
例子
下麵的例子顯示了isspace()方法的使用。
#!/usr/bin/python str = " "; print str.isspace(); str = "This is string example....wow!!!"; print str.isspace();
當我們運行上麵的程序,它會產生以下結果:
True False