2018年5月30日

摘要: fr = open('88.txt',mode='r', encoding='utf-8') planincode = fr.read() print('明文:' + planincode) print('密文:',end='') for c in planincode: print(chr(ord(c)+3),end='') fr = open('88.txt',mode='r... 阅读全文
posted @ 2018-05-30 21:32 AmberGCC 阅读(89) 评论(0) 推荐(0)
摘要: import turtle turtle.speed(10) colors = ['red','purple','blue','green','yellow','orange'] for i in range(100): turtle.pencolor(colors[i% 6]) turtle.fo 阅读全文
posted @ 2018-05-30 21:23 AmberGCC 阅读(76) 评论(0) 推荐(0)

导航