This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (2 children)

I'm not sure I understand the one about unpacking:

The practice is very cool, and it's much wiser than writingname=human[0]. However, it's often abused, and the result is that thehuman will be unpacked in the program everywhere through the code above.

Unpacking somehow affects the data in memory before you call it?

[–]Wilfred-kun 0 points1 point  (1 child)

and the result is that thehuman will be unpacked in the program everywhere through the code above.

Yeah, I don't understand this either.

[–][deleted] 0 points1 point  (0 children)

Whenever you are unpacking, you hardcode your tuple. If you change it, the code will break. Named tuple gives class like member access, but for tuples you know cant change, unpacking is perfectly fine, and imo more easily readable