- [VIDEO]python tutorials for beginners - learn python online
- [ARTICLE]python exercises
- [VIDEO]Learn Python 3 for Machine Learning & Web Development [2019] - Complete Python Tutorial](https://www.youtube.com/watch?v=_uQrJ0TkZlc)
- [ARTICLE]python modules and packages – an introduction
- [ARTICLE]beginning test-driven development in python
- Dive into Python
- Official Tutorial
- A Byte of Python
- Learn to Program with Python- Video Playlist
- Python Programming - Video
- Python Challenge
- Learn by Example - Video
- Enterprise Automation in Python - Video
If mac has both python2 and python3 installed, the correct pip command should be used for installing packages
# Python2
> sudo pip install openpyxl
# Python3
> sudo pip3 install openpyxl
Anaconda Distribution Download - Python 3.7 version for macOS Installer
If mac has both python2 and python3 installed, the correct pip command should be used for installing packages
# Python2
> sudo pip install Django==2.2.1
# Python3
> sudo pip3 install Django==2.2.1