Standard Library & Popular Packages
Python ships with batteries included.
import math, datetime, statisticsprint(math.sqrt(9))Install third‑party packages with pip:
pip install requestsC# uses NuGet (dotnet add package), while JavaScript uses npm (npm install).
Practice Questions
Section titled “Practice Questions”- Which module would you import for HTTP calls?
Answer
`requests`. - What is Python’s package manager?
Answer
`pip`.