Tag

re

0 views collected around this technical thread.

Test Development Learning Exchange
Test Development Learning Exchange
Jun 26, 2024 · Fundamentals

Overview of Common Python Standard Library Modules

This article provides practical code examples for using key Python standard library modules—including os, sys, json, datetime, re, math, collections, urllib, random, and logging—to perform common tasks such as file operations, system info, data parsing, date handling, pattern matching, calculations, data structures, web requests, random generation, and logging.

DateTimeJSONOS
0 likes · 4 min read
Overview of Common Python Standard Library Modules
Python Programming Learning Circle
Python Programming Learning Circle
Jan 28, 2021 · Fundamentals

Python Regular Expressions (re module): Syntax, Functions, and Examples

This article introduces Python's regular expression capabilities via the re module, explaining core concepts, basic syntax, and key functions like match, search, and sub, accompanied by detailed code examples and illustrations of advanced regex constructs.

Pattern MatchingPythonTutorial
0 likes · 5 min read
Python Regular Expressions (re module): Syntax, Functions, and Examples