Skip to content

Commit 4e8d8ef

Browse files
chore: sync content to repo (#9878)
Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com>
1 parent 632a76c commit 4e8d8ef

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

src/data/roadmaps/python/content/data-structures--algorithms@VJSIbYJcy2MC6MOFBrqXi.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ Visit the following resources to learn more:
77
- [@roadmap@Visit Dedicated DSA Roadmap](https://roadmap.sh/datastructures-and-algorithms)
88
- [@article@Learn DS & Algorithms](https://www.programiz.com/dsa)
99
- [@video@Data Structures Illustrated](https://www.youtube.com/playlist?list=PLkZYeFmDuaN2-KUIv-mvbjfKszIGJ4FaY)
10-
- [@video@DSA Python Playlist](https://www.youtube.com/playlist?list=PLKYEe2WisBTFEr6laH5bR2J19j7sl5O8R)
11-
- [@feed@Explore top posts about Algorithms](https://app.daily.dev/tags/algorithms?ref=roadmapsh)
10+
- [@video@DSA Python Playlist](https://www.youtube.com/playlist?list=PLKYEe2WisBTFEr6laH5bR2J19j7sl5O8R)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Glob Module in Python
2+
3+
The `glob` module in Python is a handy tool for finding files and directories whose names match a specific pattern. It uses Unix shell rules for pattern matching, allowing you to easily search for files with certain extensions, files starting with a particular name, or any other combination of criteria you define using wildcards. The main function in this module, also named `glob`, takes a pattern as input and returns a list of all the pathnames that match it.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@article@Python glob Module: File Pattern Matching Explained](https://roadmap.sh/python/glob)
8+
- [@article@glob](https://realpython.com/ref/stdlib/glob/)

0 commit comments

Comments
 (0)