私は現在 Python を学んでおり、この言語を試すためのプログラムを書きました。ただし、使用するたびに、出力のどこかに常に「u」という文字が含まれます。IDE として Pyscripter を使用しています。
これは私のコードです:
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)
実行すると、次のように表示されます。
>>> 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'
必要な文字列だけでなく、出力内にランダムなu
文字があるのはなぜですか?