列表实例
Posted zhhhhmmmff
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列表实例相关的知识,希望对你有一定的参考价值。
import turtle turtle.speed(10) colors = [\'red\', \'purple\', \'blue\', \'green\' , \'yellow\', \'orange\'] for i in range(200): turtle.pencolor(colors[i% 6]) turtle.forward(i) turtle.left(59) turtle.done()
以上是关于列表实例的主要内容,如果未能解决你的问题,请参考以下文章
如何使用对象列表在片段中实现newinstace模式[重复]