Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
43399 | 木木老师 | 元音字母转换 | Python3 | Accepted | 36 MS | 3776 KB | 290 | 2022-12-11 14:08:19 |
n=int(input()) yuan={'a':1,'e':1,'i':1,'o':1,'u':1} arr=[] for i in range (n): a=input() arr.append(a) for i in arr: for j in i: if j.lower() in yuan: print(j.upper(),end="") else: print(j.lower(),end="") print("")