view arrays/mini_fnmatch/question.rst @ 0:20fea762903e

Import some exercises and solutions
author Louis Opter <kalessin@kalessin.fr>
date Sat, 29 Jun 2013 19:30:31 -0700
parents
children
line wrap: on
line source

minifnmatch
===========

Write a fnmatch(string, pattern) → bool function that supports the * and ?
metacharacters. See fnmatch(3).

.. note:: Stéphane got this.