Coding Curriculum - Python

Lesson 6

Populating the Grid: Part 2

In the last lesson we looked at importing functions and random number generators. We will also use these in worksheet 6 so if you cannot remember how to use them, have a look at the previous lesson.

During this lesson, we will learn everything to complete our word search puzzle!

We have already done a lot but let's have a look at what we have still got to do:

  • Create a loop, to run until we have found an appropriate spot for a word
  • Place the word in that spot
  • Randomly populate the rest of the grid
  • Link everything together

Wow, that seems like a lot! I'll keep this lesson short so that we can start coding.