We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
my_list=[1,11,15,78,10,9,62,90,91] prime=[] for i in my_list: c=0 for j in range(1,i): if i%j==0: c+=1 if c==1: prime.append(i) print(prime)