yoshiislandblog.net
元営業の駆け出しアラサーSEが、休日にMACと戯れた際の殴り書きメモ。日々勉強。日々進歩。

この記事は3年以上前に書かれた記事で内容が古い可能性があります

python turtle走らせてみた

2016-02-28

覚えたてのturtleでお絵描きしてみました。


#!/usr/local/bin/python
# -*- encoding: utf-8 -*-

import turtle
t = turtle.Pen()
while True:
color_list = 'pink', 'green', 'purple'
import random
scale = random.randint(50, 100)
print("scale %s" % scale)
t.left(60)
for c in color_list:
i = 1
print("color %s" % c)
while i <= 360 / 60:
print("count %s" % i)
t.begin_fill()
t.forward(scale)
t.fillcolor(c)
t.left(30)
t.circle(scale/4, 180)
t.right(180)
t.circle(scale/4, 180)
t.left(30)
t.forward(scale)
t.left(180)
i = i + 1
t.end_fill()
scale = scale * 0.8
t.up()
location = random.randint(100, 300)
print("location %s" % location)
t.left(scale)
t.forward(location)
t.left(scale)
t.forward(location)
t.down()
turtle.done()

イメージは、今年のバレンタインで作った無印のいちごのガトーショコラ
もうちょっと、お花の配置がばらばらになるといいなぁと思います。数学の知識が必要そう。。