📜  使用 for 循环显示字符串中的元音 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:08.427000             🧑  作者: Mango

代码示例1
text = input('Enter text: ')

for char in text:
    if char.lower() in 'aeiou':
        print(char)