Python – Adding elements to List without using append or extend method

Can we add elements to a list object without using append or extend methods of list. Lets check with an example.  We can see it is not possible because memory allocation for list object in python happens at run time. So when the list L is created with three elements and try to access 4th … Continue reading Python – Adding elements to List without using append or extend method