python 判断是否是元音字母

def is_vowel(char):  
    all_vowels = 'aeiou'  
    return char in all_vowels  
print(is_vowel('c'))  
print(is_vowel('e'))
原文地址:https://www.cnblogs.com/sea-stream/p/9985263.html