码迷,mamicode.com
首页 > 其他好文 > 详细

字符串操作练习

时间:2017-09-18 16:18:46      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:bsp   int   字符   orm   code   input   com   技术   format   

for i in range (12):
    print(chr(9800+i),end="  ")

    ? ? ? ? ? ? ? ? ? ? ? ? 

s = input("请输入,明文密码:")
for i in s:
    if ord("a") <= ord(i) <= ord("z"):
        print(chr(ord("a") + (ord(i) - ord("a") + 3) % 26),end=‘‘)
    else:
        print(i,end=‘‘)

    请输入,明文密码:abc123789xyz

     def456012abc

print(中华人民共和国国内生产总值(GDP):{0:,.2f}亿元({1}年).format(689136.89,"2015"))

    中华人民共和国国内生产总值(GDP):689,136.89亿元(2015年)

for x in range(1,10):
    for y in range(1,x+1):
        print({}x{}={}.format(x,y,x*y),end= )
    print(\n)

     技术分享

 

字符串操作练习

标签:bsp   int   字符   orm   code   input   com   技术   format   

原文地址:http://www.cnblogs.com/diaowen/p/7543553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!