# Python CodeRecipe|isspace()の使い方
❮ Home ❮ String Methods
# isspace()の例1
Check if all the characters in the text are whitespaces:
txt =
" "x = txt.isspace()
print(x)
# isspace()の定義及び使い方
isspace()関数は、 文字列内の文字は空白で、それ以外の場合はFalseです。
# isspace()の構文
string.isspace()
# isspace()の引数
パラメータがありません。
# isspace()の例2
Check if all the characters in the text are whitespaces:
txt =
" s "x = txt.isspace()
print(x)
❮ Home ❮ String Methods