pyhon_basics.ipynb
missing word
Not only lists, but also other data-types (such as strings, dictionaries, and, as we'll see later, numpy arrays) have their own methods. We'll show you a couple of (often-used) examples of methods in built-in data types.
First, one often used method of lists is
append
, which takes in an object […] adds it to itself.
and