def pangram(s):
check=""
small=s.lower()
combine=small.replace(" ","")
for i in combine:
if i in check:
return False
else:
check+=i
return True
print(pangram("The quick brown fox jumps over the lazy dog"))
注意:Pangrams 是包含字母表中的每个字母至少一次的单词或句子。
例如:“敏捷的棕狐跳过懒惰的狗”
我无法找出我的代码有什么问题,请帮助!