1

Create an empty picture with dimensions 350x350

I came up with this:

def makeNewCanvas():
    canvas = makeEmptyPicture(350, 350) 

it does nothing please help

Nilesh
  • 20,521
  • 16
  • 92
  • 148
James Angele
  • 13
  • 2
  • 4

1 Answers1

0

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.

Abdul Baig
  • 3,683
  • 3
  • 21
  • 48