Skip to content
Snippets Groups Projects
Commit e4e94974 authored by 장범진's avatar 장범진
Browse files

Upload New File

parent d02f0aa9
No related branches found
No related tags found
No related merge requests found
hw4.py 0 → 100644
import turtle as t
t.speed(100)
t.bgcolor("black")
t.color("yellow")
t.up()
t.goto(0,-200)
t.down()
k = 10
for j in range(200):
t.circle(k)
k=k+1
t.bgcolor('yellow')
t.color("red")
t.speed(1000)
t.up()
t.goto(0,0)
t.down()
def roop2(size ,n ):
for i in range(n):
t.fd(i)
t.left(70)
roop2(1 , 500)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment