Like in the following code; how do I avoid repeating "char =="?
for char in s:
if char == 'a' or char == 'e' or char == 'i' or char == 'o' or char == 'u':
do...
Is it possible to approximate the second line to what one would say in natural language: "if char is equal to a, e, i, o, or u..." ?