rishikesh0014051992@gmail.com
Python developer (Senior)
gudal@sjainventures.com
Python developer (Junior)
>>> class MyList(list):
... def __add__(self, string):
... self = list(self) + list(string)
... return self
...
>>> l = MyList([9, 5, 6, 3])
>>> l + 'hello'
[9, 5, 6, 3, 'h', 'e', 'l', 'l', 'o']
>>>
>>> l2 = l + 'Python'
>>> l2
[9, 5, 6, 3, 'P', 'y', 't', 'h', 'o', 'n']
>>>
>>> type(l2)
>>>