summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a889.py
blob: e9c01517292635ddb0264bee0ff3a014285eb14d (plain)
1
2
3
4
5
6
def capitalize_first_last_letters(str1):
     str1 = result = str1.title()
     result =  ""
     for word in str1.split():
        result += word[:-1] + word[-1].upper() + " "
     return result[:-1]