Hey i keep getting a string index out of range error... i have tried EVERYTHING could you please help out, Thanks a hell of a lot appreciated.
x = 0
y = ""
z = 0
user_input = raw_input("Message? ")
while z < len(user_input):
y = y + " " + user_input[x]
x = x +3
z += 1
if x > len(user_input):
print y
break