Implement function noVowel() that takes a string s as input and
returns True if no char- acter in s is a vowel, and False otherwise
(i.e., some character in s is a vowel). >>>
noVowel('crypt') True >>> noVowel('cwm') True >>>
noVowel('car') False
Implement function allEven() that takes a list of
integers and returns True if all integers in the list are even, and
False otherwise.
>>> allEven([8, 0,
-2, 4, -6, 10])
True
>>> allEven([8, 0,
-1, 4, -6, 10])...