Module 4 was about conditionals, loops and functions.
Since I know just enough JavaScript to be confused in Python, I searched the web for a page that compares Python syntax to JavaScript syntax and I was not disappointed. Lambda School’s github has a page about it in their wiki. I cloned the whole wiki to my machine as it seems pretty useful to have on hand.
One thing to be careful about is indentation. In Javascript, spaces don’t matter. (Don’t get started on tabs and spaces!)
In Python, indentation tells the program whether a line part of your loop or function so,
Indentation matters!
-me
I’ve started taking notes in the mac notes app because this stuff doesn’t just stick.
Opening the examples and trying them out on repl as well.
Tomorrow we will delve into some math in module 5.