#! /usr/bin/python

import re

x='alma'

minta=re.compile('a')
b=minta.sub('.','abrakadabra')
print b
