reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

Code Fellows Python 401

Read: 19 - Automation

Python Regular Expressions Tutorial

a sequence of characters used to check whether a pattern exists in a given text (string) or not.

Here’s a cheat sheet because regex is a real pain

Here’s a regex generator if you don’t want to learn it

shutil

The shutil module includes high-level file operations such as copying and archiving.

Additional Resources

Bookmark and Review