2.4k views
6 votes
Edhesive 6.3 Code Practice

Edhesive 6.3 Code Practice-example-1
User Ricketts
by
4.9k points

1 Answer

9 votes

Answer:

import simplegui

def draw_handler(canvas):

canvas.draw_point([1000,1], "yellow")

frame = simplegui.create_frame('Testing', 600, 600)

frame.set_canvas_background("Black")

frame.set_draw_handler(draw_handler)

frame.start()

Step-by-step explanation:

i hope this works, sorry if its late

User Kelechi
by
4.4k points