Part 1: Regular Expressions (regex)

Note that in regex backslashes have a special meaning. We negate this by treating using Python's raw string notation r'string' To escape special characters that might be part of the pattern we're interested in, we use \. For example: In [25]: Part 2: Command Line Arguments ................
................