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"))
#Note : Pangrams are words or sentences containing every letter of the alphabet at least once.
Let's say, e.g., "The quick brown fox jumps over the lazy dog"
I can't find out what's wrong with my code...