Python:Filtering Tutorial
From Progzoo
Filtering
http://www.python.org/doc/2.5.2/lib/string-methods.html includes a list of string methods.
Contents |
Selecting a region.
Print the countries where the region is Europe.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Picking the stans.
Print only those countries where the name ends with stan
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Countries with a z.
Print only those countries where the name contains the letter z
You can use contains for this.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Small countries (by area).
Print the countries that have an area of less than 100.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]