Drawing Pad1

Challenge 1 Create a window to work in

Create a new Python document (File, New, New File.., Python Script, Create)

Save your work as drawingpad.py

Copy this code (left side only) into the document to setup your drawing pad

from turtle import TurtleScreen, RawTurtle, TK

root = TK.Tk()

cv1 = TK.Canvas(root, width=500, height=500, bg="#ddffff")

cv1.pack()

s1 = TurtleScreen(cv1)

s1.bgcolor("orange")

p = RawTurtle(s1)

#Insert turtle moves here

TK.mainloop()

#Set width and height of #pop up window

#Colour of background

#Define turtle in variable p

#This must go on the end no #code should go after it