chr(int())取ASCII转换字符

line="73,32,99,97,110,32,100,111,32,105,116,33"
for i in line.split(","):
    print(chr(int(i)),end="")