Python · The collections Module
What does this print? ``` from collections import namedtuple P = namedtuple("P", "x y") p = P(1, 2) p.x = 10 print(p) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
