Which of these is NOT a characteristic of namedtuples?
namedtuples are just as memory efficient as regular tuples.
namedtuples
tuples
No import is needed to use namedtuples because they are available in the standard library. We need to import it using:from collections import namedtuple
from collections import namedtuple
Each member of a namedtuple object can be indexed to directly, just like in a regular tuple.
tuple
You can assign a name to each of the namedtuple members and refer to them that way, similarly to how you would access keys in dictionary.
namedtuple
dictionary