Python-Programming-Lesson-Notes

6.1 Determining Matches

Which of these files is not matched by the expression glob.glob('data/*as*.csv')?

  1. data/gapminder_gdp_africa.csv
  2. data/gapminder_gdp_americas.csv
  3. data/gapminder_gdp_asia.csv
Solution 1 is not matched by the glob.

Episode 6 exercise 2