
터틀 아트(Turtle Art) 그리기
·
Programming Language/PYTHON
import turtle as t def c(): global b t.circle(b) b+=10 def bf(): t.begin_fill() def ef(): t.end_fill() pic=input("그림을 보려면 1을 입력 : ") if pic=="1": a=1 t.screensize(500,500) t.bgcolor("steelblue") t.colormode(255) t.speed(3) t.pensize(3) t.speed(0) t.penup() t.goto(-1000,0) t.pendown() t.color(121,178,205) t.begin_fill() for a in range(2): t.forward(2000) t.left(90) t.fd(600) t.left(90) ef() t.pen..