0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

繰り返し使って星のらせん描いてみた。

Posted at

亀が動くアレ作ってみた

「Pythonではじめる数学の冒険」の課題1-6の答えです。
関数(star)を最初に作って、その後にそれをループ(starSpiral)させるのですが、ずっとstarSpiralを先頭にしてしまっていたのでうまく行きませんでした。
length+=の部分や変数をあらかじめ設定しておく部分は注意です。
やっと正解にたどり着いたので備忘録的に共有。

from turtle import *
shape('turtle')
speed(10)
def star(length=5):
    for i in range(5):
        forward(length)
        right(144)
def starSpiral(length):
    for i in range(60):
        length+=5
        star(length)
        right(5)
starSpiral(5)

動かすとこんな感じ。
スクリーンショット 2022-02-23 0.21.29.png

綺麗ですね、プログラムというのは」ちょっといじるだけでアートみたいになるんですな。。
また書き(描き)ます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?