Here you will learn about JSONs, RegEx, PIP and Try/Except
- JSONs
- Read JSON string from file and convert it to Python Dictionary
- Write Python Dictionary to JSON string and save it to a file
- RegEx Multiple Matches
- Match a string that starts with "Hello" and is followed by one or more word characters
- Match a string that contains any number of digits followed by a space and then any number of non-digit characters
- Match a string that contains one or more occurrences of the word "cat"
- Match a string that starts with any number of word characters, followed by a hyphen, and ends with any number of word characters
- PIP
- Install a package using PIP
- Create a requirements.txt file
- Install dependencies from a requirements.txt file
- Try/Except
- Try/Except/Finally
- Try/Except/Else
- Raise an exception
- RegEx Multiple Matches
- PIP Install
- Creating a requirements.txt File and Installing Dependencies in a Virtual Environment
