gpt4 book ai didi

python - 字符串python中的空格

转载 作者:太空宇宙 更新时间:2023-11-04 07:11:30 25 4
gpt4 key购买 nike

Python如何检测一个字符串中是否有2个连续的空格?

例如,输入字符串:

Hello   there

我想检测这两个空格并返回 True

我知道您可以使用splitjoin 来填充连续的空格,但是您如何检测它们呢?

最佳答案

如果你想找到两个或多个连续的空格:

if "  " in s:
# s contains two or more consecutive space

如果你想在字符串中的任意位置找到两个或更多空格:

if s.count(' ') >= 2:
# s contains two or more spaces

关于python - 字符串python中的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8459055/

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