lists and dicts — the bones of every api8 / 9
lists, dicts, and the shape of an api response
Start with the list pets = ["luna", "moose"]. Add "biscuit" to the end of
it using the .append method, then print the whole list.
Expected output:
['luna', 'moose', 'biscuit']
⌘↵ runs the editor.
Booting Python…
Output
[promptdojo:~]$ _