Python Projects - Unknown 6

Python Turtle

OBJECTIVE:Draw freestyle anything you want to. We will be using “ondrag” command for this program.

 



 



CODE:

from turtle import Turtle
drag=Turtle()
drag.color("#285078")
def goto(x,y):
drag.goto(x,y)
drag.ondrag(goto)

Draw Freestyle Python Turtle



CHALLENGE:Try writing each alphabet of the word in different color





Media and Press Coverage