Загрузка данных


from curses.textpad import rectangle

from graph import *
canvasSize(400,400)
windowSize(400,400)
penSize(1)
penColor('blue')
brushColor("blue")
rectangle(10,10,30,20)
penColor("red")
brushColor("red")
circle(40,50,10)
penColor("green")
brushColor("green")
polygon ([(70,70), (85,90), (55,90), (70,70)])
run()