Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
71461 | 胡海峰老师 | 输出元音字母 | Python3 | Accepted | 36 MS | 3736 KB | 238 | 2024-04-24 12:16:34 |
""" input THIS is not a program. output Iioaoa """ s = input() def find_owel(s): res ='' for le in s: if le in 'aeoiu' or le in 'AEOIU': res +=le return res ans = find_owel(s) print(ans)