# 数字格式转换v1
'''a = input()
a1 = list(a)
b = ["零", "一", "二", "三", "四", "五", "六", "七", "八", "九"]
for i in range(len(a)):
    a1[i] = b[eval(a1[i])]
a2 = ''.join(a1)
print(a2)'''
#NumberConvertv2
'''template = "零一二三四五六七八九"
s = input()
for c in s:
    print(template[eval(c)], end="")'''
#numconvertV3
digit = {'0':'零','1':'一','2':'二','3':'三','4':'四','5':'五','6':'六','7':'七','8':'八','9':'九'}
f = input()
listf = list(f)
shu = []
for i in listf:
    shu.append(digit[i])
    jieguo = ''.join(shu)
print(jieguo)

最新文章

  1. 研究Extension和Category的一个例子
  2. Twitter API 申请key
  3. [under the hood]Reduce EXE and DLL Size with LIBCTINY.LIB
  4. AIR lame参数配置
  5. Microsoft Azure 在北美 TechEd 大会上发布令人振奋的更新,帮助客户开始使用云服务
  6. 构建一个真实的应用电子商务SportsStore9
  7. CSS布局之-水平垂直居中
  8. codeforces 286E Ladies' Shop
  9. 对于单页应用中如何监听 URL 变化的思考
  10. python正则表达式模块re
  11. 《CSAPP》读书笔记
  12. jhipster安装_Windows
  13. 自动化测试基础篇--Selenium Python环境搭建
  14. ElasticSearch5.5.1插件分类
  15. python --- 11 第一类对象 函数名 闭包 迭代器
  16. 在vue-cli搭建的项目中在后台mock接口中支持req.body和req.cookies
  17. Tomcat catalina-deamon.out 日志切割 每天生成一个文件
  18. 题解 P1018 【乘积最大】
  19. Windows 8 应用程序前后台切换事件监听
  20. L202

热门文章

  1. Html/css 水平布局居中
  2. 【百度前端技术学院 Day5/6】CSS盒模型及Float简单布局
  3. 是时候拥抱.NET CORE了
  4. boost常用库(一):boost数值转换
  5. 自动完成 APP【字典树(Trie树)+dfs】
  6. 色彩空间转换 rgb转ycbcr422/ycbcr422转rgb
  7. springboot的坑
  8. kafka全部数据清空
  9. strcmp函数的两种实现
  10. Spring系列.事务管理