Python Projects - Unknown 13

Python Turtle

OBJECTIVE:Art with Loop

 



CODE:

import turtle
ja = turtle.Turtle()
ja.pencolor("Red")
ja.speed(100)
for i in range(20):
ja.forward(50)
ja.right(80)
ja.penup()
ja.goto(30 , 30)
ja.pendown()
for i in range(31):
ja.forward(50)
ja.right(50)
ja = turtle.Screen()
ja.bgcolor("Maroon")

>

Media and Press Coverage