Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列に\r\ t \ n ""のような白い文字しかないかどうかを確認する最も簡単な方法は何ですか?
文字列のisspace()メソッドはこれを教えてくれます:
isspace()
>>> " ".isspace() True >>> " x ".isspace() False
別のオプションは、端を取り除くことです:
if not s.strip(): print "It was all whitespace!"