Skip to main content

Worksheet 16.17 Group Work - Classes, constructors, attributes, and methods

It is best to use a POGIL approach with the following. In POGIL students work in groups on activities and each member has an assigned role. For more information see https://cspogil.org/Home.

Note 16.17.1.

If you work in a group, have only one member of the group fill in the answers on this page. You will be able to share your answers with the group at the bottom of the page.
Learning Objectives
Students will know and be able to do the following.
Content Objectives:
Look the code below. It defines a class. it also declares methods which are functions that are defined inside of a class. One of the methods is automatically called when a new object is created by the class. One of the methods is automatically called when you print an object of the class.

Subsection 16.17.1 A Book Class

Activity 16.17.1.

Run the following code
Look at the class definition. It starts with the keyword class. Then answer the following questions.

Activity 16.17.2.

Activity 16.17.3.

Activity 16.17.4.

Describe in your own words what the __init__ method does.

Activity 16.17.5.

Activity 16.17.6.

Describe in your own words what the __str__ method does.

Activity 16.17.7.

Activity 16.17.8.

Activity 16.17.9.

Describe in your own words what is/are the difference(s) between a function and a method.

Activity 16.17.10.

Activity 16.17.11.

Put the code blocks in order below to create a class Person with a constructor (__init__) method that takes a first and last name and a __str__ method to return a string with the first and last name separated with a space.

Activity 16.17.12.

Describe in your own words what self means.

Subsection 16.17.2 Create More Book Objects

Activity 16.17.13.

Change the following main function to create a third book object called b3 with a title of β€œ1984” and author β€œGeorge Orwell”. Print out the values using the print function in the main.

Activity 16.17.14.

Change the following main function to add a person object with your first and last name.

Subsection 16.17.3 Add a Method to a Class

Activity 16.17.15.

Change the following Person class to add an initials method that returns a string with the first letter in the first name and the first letter in the last name in lowercase.
If you worked in a group, you can copy the answers from this page to the other group members. Select the group members below and click the button to share the answers.
You have attempted of activities on this page.
The Submit Group button will submit the answer for each each question on this page for each member of your group. It also logs you as the official group submitter.