[solved] How to make mapping object? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

[solved] How to make mapping object?

SoloLearn's Python Core and Python Intermediate courses do not explain anything about custom mappings. So I have a question: how to make mapping object? If needed, this is my example code: https://code.sololearn.com/c5ac65WxNnk2/?ref=app

21st Feb 2021, 6:47 AM
#0009e7 [get]
#0009e7 [get] - avatar
1 Answer
+ 2
to implement Mapping behavior, you should inherit from collections.abc.Mapping and implement __iter__ (keys), __getattr__ (values) and __len__ (length): import collections.abc class UnpackableObject(collections.abc.Mapping): def __iter__ (self): for i in range(1, 5): yield i def __getitem__(self,prop): return 'abcd'[prop-1] def __len__(self): return 4 print((*UnpackableObject(),)) print({**UnpackableObject()})
21st Feb 2021, 9:41 AM
visph
visph - avatar