solutions: 118A
This commit is contained in:
parent
3dcf10add2
commit
783ba33962
1 changed files with 9 additions and 0 deletions
9
solutions/118A.py
Normal file
9
solutions/118A.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
s = list(input().lower())
|
||||
|
||||
i = ["a", "e", "i", "o", "u", "y"]
|
||||
s = [c for c in s if c not in i]
|
||||
|
||||
for idx, i in enumerate(s):
|
||||
s[idx] = f".{i}"
|
||||
|
||||
print(''.join(c for c in s))
|
Loading…
Reference in a new issue