6.5. Naming Sets of Procedures and Functions

So far we’ve seen names for values, like variables that hold strings and numbers. We’ve also seen how to name (define) functions or procedures and use additional names to store the inputs to those functions or procedures.

Sometimes, you will want to have have a whole group of functions and/or procedures, and you will want to store them somewhere and name that whole set of functions and procedures. In fact, you can. And in fact, you have already used this ability.

That is what you are doing when you execute a statement like from turtle import *. That is where the procedures like forward and right and functions like Screen are defined. We can mix procedures and functions that we define with procedures and functions that we import.

Similar to the example above, make a procedure that takes in 2 parameters: a turtle and size. The procedure should draw a pentagon. Write the main code to call the pentagon function once.

Show Comments

Note

Discuss topics in this section with classmates.

Show Comments
You have attempted of activities on this page