Kulraj Suri

Software Engineer / Quant Dev

Python Collections

1. Lists append() The append() method adds the new list as a member of the old list. + Operator Joins two lists together. extend() Same as the + operator but it is always cleaner to use a method call. insert() Add a member to a list at a certain index. Takes two parameters: the index… Continue reading