Latest
Notebooks1 min read
Run Python in your browser, with nothing to install
Iterixs lessons run Python and SQL directly in the browser through interactive notebooks — no local setup, no virtual machines, on any computer.
notebookspythonlearning
python
import pandas as pd
sales = pd.DataFrame({
"month": ["jan", "feb", "mar"],
"total": [1200, 1800, 1500],
})
print(sales.groupby("month")["total"].sum())