Ok, I\'m trying to figure out how to make a inputed phrase such as this in python ....
Self contained underwater breathing apparatus
output
Another way
input = 'Self contained underwater breathing apparatus' output = ''.join(item[0].capitalize() for item in input.split())