as title says i simply need to add a . before each letter in my string while having vowels removed and making it lowercase i got it working just cant add the .s there here is my code
s = str(input())
vowels = ('a','e','o','u','i','A','E','O','U','I')
for letter in s:
if letter in vowels:
s = s.replace(letter,'').replace()
print(s)