gpt4 book ai didi

python - if语句,if string.count() = integer?

转载 作者:行者123 更新时间:2023-12-01 05:21:48 25 4
gpt4 key购买 nike

我希望这部分代码能够计算字符串中空格的数量,到目前为止我已经涵盖了这一点,但现在,如果字符串中没有空格,我希望代码返回 1。

代码:

    string = string.count(" ")

if string == 0:
string = string.count(" ") + 1

return string

我收到以下错误:

    AttributeError: 'int' object has no attribute 'count'

我该如何解决这个问题?任何帮助表示赞赏。

最佳答案

您正在过度读取变量字符串,请尝试使用新变量:

spaces = string.count(" ")

if spaces == 0:
spaces = string.count(" ") + 1

return string

关于python - if语句,if string.count() = integer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22162342/

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