What is glob module in python
What is the glob Module?
Wildcard Characters in glob
The glob module in Python is a built-in tool that helps you search for files and directories using wildcard characters
The glob module supports several wildcard characters:
* → Matches any number of characters (including none)
? → Matches a single character
[] → Matches any character inside the brackets
No comments