In this code basically I'm trying to count those words in this sentence in which there is no vowel but there is something (or maybe everything) that I'm doing wrong, here is the code
par="zyz how are you"
count=0
for i in range(len(par)):
if par[i]==" ":
if par[i]!="a" or par[i]!="e" or par[i]!="i" or par[i]!="o" or par[i]!="u":
count+=1
print("total words without vowel -> ",count)