View on GitHub

reading-notes

My learning journal for Code Fellows

Automation

Python Regular Expression

Regex is the sequence of characters used to check whether a pattern exists.

Useful Regex functions

To Use

  1. Import re

  2. Create a phrase for regex to look for

  3. Find a text to check the regex phrase against

  4. Use a regex function on the test

Useful site to construct regex sites

Regex 101

shutil - High Level File Operations

shutil is a module that helps in the automating process of copying and removing of files and directories

Copying Files