Lab day 1
Reading
Sources
Pain and Suffering
Beginners Guide to Big O
Season 1, Episode 6, A friendly intro to Big O Notation
Ned Batchelder - Facts and Myths about Python names and values
- The pain and suffering article had to be written by someone in the military. Thats the same kind of pep talk we got in the infantry. During training we were almost constantly told to “embrace the suck”.
- Listening to the podcast and I have no idea what theyre talking about.
- there are some variables that can be updated like number values
- there are some variables that cant be updated like ints, floats, strings, and tuples.
- changing int is rebinding while changing using .append is mutating
- any name can be any value at any time
- names have no type but have scope while values have no scope but have type