Ok, I\'m trying to figure out how to make a inputed phrase such as this in python ....
Self contained underwater breathing apparatus
output
Here's the quickest way to get it done
input = "Self contained underwater breathing apparatus" output = "" for i in input.upper().split(): output += i[0]