Every program needs to store data and that data usually gets stored in one or more variables. However, the more data a program needs to store, the more variables you need to create. Even worse, multiple variables make it hard to know which variables might be related to one another. This is why it is important to declare variables early on and to make your program as simple as possible.
Two ways to avoid using multiple variables are to use an array or a dictionary. ...