Python左手画条龙右手画个彩虹
Posted 落叶虽美只活一世
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python左手画条龙右手画个彩虹相关的知识,希望对你有一定的参考价值。
左手画龙右手画彩虹听说很火,Python也可以画出很美的彩虹,准确的说像彩虹棒棒糖:)
效果如下图:
# -*- coding: utf-8 -*- # @Time : 2019/12/16 23:28 # @Author : Nola # @File : pen_something.py import turtle t = turtle.Pen() turtle.bgcolor("black") sides = 6 # 绘制6个边 colors = ["red", "yellow", "green", "blue", "orange", "purple"] for x in range(360): t.pencolor(colors[x % sides]) t.forward(x * 3 / sides + x) t.left(360 / sides + 1) t.width(x * sides / 180) t.left(91)
以上是关于Python左手画条龙右手画个彩虹的主要内容,如果未能解决你的问题,请参考以下文章