This is my second day of learning python (I know the basics of C++ and some OOP.), and I have some slight confusion regarding variables in python.
Here is how I unde
When you run spam = 100 python create one more object in the memory but not change existing. so you still have pointer cheese to 42 and spam to 100
spam = 100
cheese
spam