标签:.com 技术 span tle close txt end 图片 range
fr = open(‘jay.txt‘,mode=‘r‘,encoding=‘utf-8‘) jay = fr.read() print(‘明文:‘+jay) print(‘密文:‘,end=‘‘) fr.close() fw = open(‘hannah.txt‘,mode=‘a‘,encoding=‘utf-8‘) for c in jay: print(chr(ord(c)+3),end=‘‘) fw.close()
import turtle turtle.speed(10) colors = [‘#B0E2FF‘,‘blue‘,‘yellow‘,‘pink‘,‘green‘,‘orange‘] for i in range(200): turtle.pencolor(colors[i%6]) turtle.forward(i) turtle.left(59) turtle.done()
标签:.com 技术 span tle close txt end 图片 range
原文地址:https://www.cnblogs.com/biuabiu123/p/9113656.html