文件操作,列表实例NiceHexSpiral
Posted 三米巨人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件操作,列表实例NiceHexSpiral相关的知识,希望对你有一定的参考价值。
fr = open (\'red.txt\',mode=\'r\',encoding=\'utf-8\') red = fr.read() print(\'明文:\'+ red) print(\'密文:\',end=\'\') fr.close() fw = open(\'blue.txt\',mode =\'a\',encoding=\'utf-8\') for c in red: print(chr(ord(c)+3,),end=\'\') fw.close()
import turtle turtle.speed(10) colors = [\'#FFB6C1\',\'blue\',\'yellow\',\'red\',\'green\',\'orange\'] for i in range(200): turtle.pencolor(colors[i%6]) turtle.forward(i) turtle.left(59) turtle.done()
以上是关于文件操作,列表实例NiceHexSpiral的主要内容,如果未能解决你的问题,请参考以下文章
Linear regression with one variable算法实例讲解(绘制图像,cost_Function ,Gradient Desent, 拟合曲线, 轮廓图绘制)_矩阵操作(代码片