摘要: 恺撒密码的编码 code=input('明文:') print('密文:',end='') for i in code: print(chr(ord(i)+3),end='') 国家名称 GDP总量(人民币亿元)中国 ¥765873.4375澳大利亚 ¥ 78312.4375(国家名称左对齐,数字右对齐,千分位,2位小数) print('国家名称 GDP总量') pr... 阅读全文
posted @ 2017-09-19 12:44 074罗桦 阅读(138) 评论(0) 推荐(0) 编辑