精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python isspace()方法

Python isspace()方法

Python 字符串Python 字符串

Python isspace() 方法檢測字符串是否只由空格組成。

 

語法

isspace()方法語法:

str.isspace()

 

參數

  • 無。

 

返回值

如果字符串中只包含空格,則返回 True,否則返回 False。

 

實例

以下實例展示了isspace()方法的實例:

#!/usr/bin/python

str = "       "; 
print str.isspace();

str = "This is string example....wow/b64/";
print str.isspace();

以上實例輸出結果如下:

True
False

Python 字符串Python 字符串

下一節:Python istitle()方法

Python 教程

相關文章