- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
5小时前关门了。
Improve this question
我尝试让代码在字符串中出现两次"l"时返回True,在字符串结束时返回False
是的="你好"
def double_letters(go):
ch = ""
T = True
yup1 = len(go)
count = 0
while T == True:
for c in go:
if c == ch:
count += 1
return count
ch += c
if count == 2:
print ("True")
break
elif yup1 > 5:
print ("False")
break
else:
continue
print (double_letters(yup))
这是我已经尝试过,但它是不工作的,请有人建议,因为我是一个非常初学者与此,所以它可能是非常简单的。请忽略垃圾格式,将不允许我调整这一切
1条答案
按热度按时间aurhwmvo1#
如果您特别想要“l”,而不是随便一个字母,那么就容易多了: