个人学习笔记 数字形式转换1 参考文档: 数字形式转换1 获得用户输入的一个正整数输入,输出该数字对应的中文字符表示。 template = "零一二三四五六七八九" s = input() for c in s: print(template[eval(c)],end = ""<