I'm currently learning Python, and wrote a program to experiment with the language. However, whenever I use it, the output always has a letter "u" in it somewhere. I'm using Pyscripter as my IDE.
This is my code:
print "whats your name"
age = raw_input()
print "Alright, so %r, I just realized what percent-r does actually or is meant for" % (age)
print "What next ur age",
age1 = raw_input()
print "you entered %r " % (age1)
When I run it, I see something like this:
>>> Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win32.
>>> whats your name (i typed kk)
>>> Alright, so u'kk', i just realized what percent-r does actually or is meant for
>>> what next ur age (i typed ll)
>>> you entered u'll'
Why is there a random u
character inside my output, instead of just the string I want?