Daily Archives: February 26, 2022

Python: ADD (+) vs. INPLACE_ADD (+=) vs. extend() for LIST

Today's Python series by Jake Gober led me to consider why there's difference between concatenate (+) two lists to the same variable and using the extend() function on the list. The answer is ADD (+) creates a new list, I … Continue reading

Posted in Questions, Technical | 1 Comment