?b to 2
* to 1 or 2
filename pattern matching
* is matches everything
? is matches any single character
[seq] is matches any character in seq
[!seq] is matches any character not in seq
reference https://docs.python.org/3/library/fnmatch.html
run sample
?b to 2
* to 1 or 2
filename pattern matching
* is matches everything
? is matches any single character
[seq] is matches any character in seq
[!seq] is matches any character not in seq
reference https://docs.python.org/3/library/fnmatch.html
run sample