文件操作,列表实例NiceHexSpiral
Posted 谢斐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件操作,列表实例NiceHexSpiral相关的知识,希望对你有一定的参考价值。
classmates=[\'a\',\'b\',\'c\',\'d\'] print(classmates[-1]) print(len(classmates)) classmates.append(\'t\') classmates.insert(1,\'r\') classmates.pop() print(classmates)
import turtle turtle.speed(10) colors=[\'#FF6EB4\',\'#C67171\',\'#CD4F39\',\'#8968CD\',\'#EE9A49\',\'#FFFF00\'] for i in range(200): turtle.pencolor(colors[i%6]) turtle.forward(i) turtle.left(55) turtle.done()
fr=open(\'c_kk.txt\',mode=\'r\',encoding=\'utf-8\') o=fr.read() fr.close() fw=open(\'kk.txt\',mode=\'a\',encoding= \'utf-8\') for c in o: fw.write(chr(ord(c)-3)) fw.close()
以上是关于文件操作,列表实例NiceHexSpiral的主要内容,如果未能解决你的问题,请参考以下文章
Linear regression with one variable算法实例讲解(绘制图像,cost_Function ,Gradient Desent, 拟合曲线, 轮廓图绘制)_矩阵操作(代码片