# takes name(name and sirname) and return initals def abbrevName(name): return '.'.join(w[0] for w in name.split()).upper()