Why doesn''t list have safe "get" method like dictionary?
Ultimately it probably doesn''t have a safe .get method because a dict is an associative collection (values are associated with names) where it is inefficient to check if a key is present (and return its value)