Timofey Ivashchenko
Results
2
issues of
Timofey Ivashchenko
The following methods are present in the collections.deque class (in the book they are listed as present only in the list class): ``` s.__add__(s2) s.__contains__(e) s.__imul__(n) s.__mul__(n) s.__rmul__(n) s.copy() s.index(e)...
Comparison Table 2-3 is missing the following array.array class methods: ``` s.buffer_info() s.fromunicode(d) s.tounicode() ``` Tested in Python 3.11.4: ``` >>> from array import array >>> dir(list) ['__add__', '__class__', '__class_getitem__',...