I don't know if I can't find my problem, or I'm just getting my keywords wrong when searching for a solution, but I can't solve it.
I'm getting problems with adding values to lists, here is my code:
x=[]
a=raw_input ("Hello, add your first database entery")
b=raw_input ("Hello, add your second database entery")
c=raw_input ("Hello, add your third database entery")
d=raw_input ("Hello, add your fourth database entery")
x.append(a)
x.append(b)
x.append(c)
x.append(d)
print (x)
Upon entering; 1,2,3,4 for the questions, I get this output:
What's with the u'x' I'm getting?