How Computers Think
- Computer can jump directly to a memory address via a
pointer. - They point to the start of a file.
- Information stored includes the name, file size etc.
- Variables fetch values from their respective memory locations.
- List of values is
a = [1,2,3,4,5] - Even if you change a value in memory, such as
a = [1,2,3,4,6],then setbto be assigned toaand it will still have the latest list of values.