Movie Title Generator

Download the following code, and get it to compile. It fills up a list with a bunch of random adjectives and another list with a bunch of random nouns.

It is intended to create a random movie title by picking a random adjective and noun out of the lists.

Files Needed

What You Should See

Random Movie Title Generator

Choosing randomly from 1124 adjectives and 3260 nouns (3664240 combinations).
Your movie title is: Flappy Hummingbird

What You Should Do on Your Own

Assignments turned in without these things will receive no credit.

  1. Make it so that the adjective and noun are chosen randomly out of their respective lists. For the sake of practice, do not use random.choice, instead use random.randrange to pick a random index value.


©2021 Daniel Gallo

This assignment is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.

Creative Commons License

Adapted for Python from Graham Mitchell’s Programming By Doing