1. 恺撒密码的编码
      x=input('明文:')
      print('密文:',end='')
      for i in x:
          if(ord('a')<=ord(i)<=ord('z')):
              print(chr(ord('a')+(ord(i)-ord('a')+3)%26),end='')
          else:
              print(i,end= '')

    2. 国家名称 GDP总量(人民币亿元)
      中国 ¥765873.4375
      澳大利亚 ¥ 78312.4375
      (国家名称左对齐,数字右对齐,千分位,2位小数)
      print('国家名称  GDP总量(人民币亿元)')
      print('{0:<14}¥{1:>10,.2f}'.format('中国',765873.4375))
      print('{0:<13}¥{1:>8,.2f}'.format('澳大利亚',78312.4375))

    3. 打出99乘法表
      for x in range(1,10):
          for y in range(1,x+1):
              print('{0}*{1}={2}\t'.format(x,y,x*y),end='')
              
          print()

       

posted on 2017-09-19 11:35  077吴文欣  阅读(132)  评论(0编辑  收藏  举报