Skip to content
Course Notes: Intermediate Python
Course Notes
Use this workspace to take notes, store code snippets, and build your own interactive cheatsheet!
Note that the data from the course is not yet added to this workspace. You will need to navigate to the course overview page, download any data you wish to use, and add it to the file browser.
%pip install handcalcs# Import any packages you want to use here
import handcalcs.render
import pandas as pd
import numpy as np
import scipy as spTake Notes
Add notes here about the concepts you've learned and code cells with code you want to keep.
Add your notes here
%%render
a = 1
b = 2
c = a + b
DataFrameas
df
variable