trying to troubleshoot a program for my python class, and can't figure out how to get the output to display on one line, without the spaces. i've tried a few different ways, string.join() and string.joinfields(), but none of them have worked so far. please help!

text = raw_input("what phrase would you like to input")
import string
splitString = string.split(phrase)
x = len(splitString)
for i in range(x)
newText = splitString[i][0]
letters = string.upper(newText)
print letters


(pretend that the last 3 lines are indented)