我需要检查构成给定单词的所有字母是否都包含在给定字符串中。我尝试了一些东西但没有用:
def check(texto, control):
for letra in control:
if texto.find(letra) == control.find(letra):
return control + " is not here"
else:
return control + " is here!"
打印检查('jshdgfyrgj','Correo')
应该返回“Correo 不在这里”
打印检查('cfgotyrrtepo','Correo')
应该返回“Correo 来了!”
它目前在所有情况下都返回 correo is here。我的代码有什么问题?谢谢!