gpt4 book ai didi

python - 在非空白处测试字符串内容

转载 作者:太空狗 更新时间:2023-10-30 01:40:12 26 4
gpt4 key购买 nike

我想测试一个句子是否包含除空白字符以外的任何内容。这是我目前使用的:

if len(teststring.split()) > 0:
# contains something else than white space
else:
# only white space

这够好吗?有更好的方法吗?

最佳答案

字符串有一个名为 str.isspace 的方法其中,根据文档:

Return[s] true if there are only whitespace characters in the string and there is at least one character, false otherwise.

所以,这意味着:

if teststring.isspace():
# contains only whitespace

会做你想做的。

关于python - 在非空白处测试字符串内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11130488/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com