• + 3 comments

    s=raw_input() l=len(s) if l>=1 and l<=1000: sen=list(s) a=list('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') f=0 c=0 for i in range(52): for j in range(l): if a[i]==sen[j]: f=1 elif a[i]!=sen[j]: c=1 if f==1 and c==0: print "pangram" elif c==1: print "not pangram" wats wrong in my code ??? my test case 0 is faling