Return a string of one character whose ASCII code is the integer. : chr « Buildin Function « Python Tutorial






print chr(97)
print chr(65L)
print chr(48)
13.6.chr
13.6.1.Return a string of one character whose ASCII code is the integer.