Data Hiding
Notice, that the display_all function can
access the private my_list and
num_of_videos members, directly
without an object in front of them!!!
this is because the client calls the display_all
function through an object
object.display_all();
so the object is implicitly available once we
enter “class scope”