用python输入一个整数,输出以该整数为编码的字符,这个程序怎么写啊

如题所述

第1个回答  2014-11-15
Python 3.4
i = int(input('a number >10, <100: '))
print(chr(i) )本回答被提问者和网友采纳
相似回答