Filtering Tutorial

From Progzoo

In these examples we select only some countries to print. A process that takes a list and selects only certain items is a "filter". Some get through, some don't.

You may need to review testing strings and numbers before you attempt these questions.

Contents

[edit] Selecting a region.

Print the countries where the region is Europe.

[Font] [Default] [Show] [Resize]

[edit] Picking the stans.

Print only those countries where the name ends with stan

[Font] [Default] [Show] [Resize]

[edit] Countries with a z.

Print only those countries where the name contains the letter z

[Font] [Default] [Show] [Resize]

[edit] Small countries (by area).

Print the countries that have an area of less than 100.

[Font] [Default] [Show] [Resize]