Wednesday, April 9.
  • Breaking News

    What is glob module in python

    What is the glob Module? 
    The glob module in Python is a built-in tool that helps you search for files and directories using wildcard characters

    Wildcard Characters in glob
    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