I am puzzled with this statement that I got from an answer associated with this question:
"So tuples can store the elements directly inside the struct, lists on the other hand need a layer of indirection (it stores a pointer to the elements). This layer of indirection is a pointer, on 64bit systems that's 64bit, hence 8bytes."
Is there really this difference among lists and tuples?
What does exactly mean "store elements directly inside the structure"?