Create an empty picture with dimensions 350x350
I came up with this:
def makeNewCanvas():
canvas = makeEmptyPicture(350, 350)
it does nothing please help
Create an empty picture with dimensions 350x350
I came up with this:
def makeNewCanvas():
canvas = makeEmptyPicture(350, 350)
it does nothing please help
When you call makeNewCanvas()
in the command area it will create the blank picture and do nothing else.
To see what you have created:
def makeNewCanvas():
canvas = makeEmptyPicture(350, 350)
show(canvas)
Then call makeNewCanvas()
in the command line.