Add a field to the SlideShow class to hold the title and modify the show method to first show a blank picture with the title on it.

What will be an ideal response?

```
class SlideShow:
def __init__(self, slideList, title):
self.slides = slideList
self.title = title

def show(self):
titleScreen = makeEmptyPicture(300, 300)
titleScreen.addTextWithStyle (black ,10,150,self.title, makeStyle(sansSerif, bold, 24))
titleScreen.show()
for slide in self.slides:
slide.show()
```

Computer Science & Information Technology

You might also like to view...

To increase webpage ranking in search engine results, use the ________ technique

Fill in the blank(s) with correct word

Computer Science & Information Technology

When using an Excel table, a table can do all of the following EXCEPT:

A) Provide both flexibility and scalability B) Automatically adjust table formatting and formula references C) Automatically sort data in table columns D) Help provide context to the user by organizing data in a meaningful way

Computer Science & Information Technology