Day 21- Mar 12 - Tuesday
increasing program code by using pylint
regular expressions (regex) in Python,covered the basics of regex syntax
-- Character classes: [ . . . ]matches any single character within the brackets.
-- Quantifiers: + , * , ? specify the number of occurrences of the preceding character or group.
-- Anchors: ^ and $ match the start and end of a string, respectively.
-- Groups: ( . . . )create a capturing group for extracting matched substrings.
-- Non-capturing groups: (?: . . . )create a group for grouping but without capturing.
how to use regular expressions in Python(the re. module) functions like re.match() and re.search for pattern matching.
how to construct regex patterns for specific tasks, such as validating addresses.
Hours spent: 9.5hrs
Last updated