我建立了sil默功能,看看看是否有数字。
def check_digit_placement(w):
if w.isalpha():
return True
else:
i=0
while True:
if w[i].isdigit():
return True #Would the absence of "break" here lead to an infinite while loop?
else:
return False #And here too.
i+=1
if i>len(w):
break
这一职能行之有效,但正如上述评论所示,我仍然很关切:如果没有适当的休息, lo是否在某个时候被 st,回到“True”或“False”? 如果是的话,那么为什么职能似乎发挥作用? 任何帮助都将受到高度赞赏。