Answer #2: You'll want to use the unichr() builtin function: for i in range(1000,1100): print i, unichr(i). Note that in Python 3, just chr() will suffice.
確定! 回上一頁