- Created in 1991
- It's free and open-source
- Curious fact: creator Guido van Rossum was the "benevolent dictator for life" until 2018
- Wide range of applications and rich libraries
- In particular, widely used in AI/ML
- On top of (1) and (2), very simple syntax
You can find base Python files (without external libraries) at the root (for easy access). The folders contain code related to external libraries (Matplotlib, NumPy, Pandas, Flask) or specific topics (Web Scraping, CSV Handling).
For Linux systems:
- Create a virtual environment
python3 -m venv venv
- Activate it
source venv/bin/activate
- Install required libraries
pip install pandas matplotlib BeautifulSoup
- Activate the virtual environment
- Run script with:
python3 path/to/file.py