Could you tell me what's wrong here?
For some reason there's nothing added into the list.
textarea = raw_input()
n=0
txa = []
string =""
while(n < len(textarea)):
if(textarea[n] != ' ' or textarea[n] != ','):
string += textarea[n]
n=n+1
print (string)
else:
print "For some reason I'm never here."
if(string == ' ' or string == ','):
string = ""
else:
txa.append(string)
string = ""
n=n+1
print(txa)
Sorry for my english.