I’ll start with a highly informative table.

Topics Relevant Files Grade
3.1-3.2 Hacks Markdown, Python .ipynb 1/1
3.3-3.4 Hacks Markdown 1/1

Now I’ll talk about some key takeaways

Topics 3.1-3.2

CollegeBoard pseudocode

numApples ← 10

Python

numApples = 10
data1 ← 10
data2 ← 25
data1 ← data2

In this case, the final value of data1 would be 25 since the value of data2 overwrites that of data1 in the third line.

Topics 3.3-3.4