Now use your simple face function in a loop to draw a whole crowd of people.
What will be an ideal response?
```
def drawCrowd():
canvas = makeEmptyPicture(500,100)
for x in range(0, getWidth(canvas),100):
makeFace(canvas, x, 0)
show(canvas)
return canvas;
def makeFace(canvas, x, y):
addOval(canvas, x+10, y+60, 80, 30)
addRectFilled(canvas, x+10, y+60, 80, 10, white)
addOval(canvas, x+20, y+20, 10, 10)
addOval(canvas, x+70, y+20, 10, 10)
```
You might also like to view...
Case-Based Critical Thinking QuestionsCase 10-1Taylor wants to be able to write, edit, and print professional documents from home. Taylor wants to create an annual report using word processing software. However, he needs to generate page numbers within the report. Taylor will need to ____.
A. use the page number feature to automatically number pages B. use HTML code to create the page numbers C. manually insert page numbers on each page D. install graphics software that works with word processing software
You have discovered the following string of binary ASCII code; figure out what they mean 01010111 01100001 01111001 00100000 01110100 01101111 00100000 01100111 01101111 00100001
What will be an ideal response?
In a computer language, a(n) ____ is the smallest unit of the language that has a unique meaning to the compiler.
A. token B. object C. method D. program
After you create a menu bar, you can copy and paste it to the other main pages in your site to save time.
Answer the following statement true (T) or false (F)