Final answer:
To view contents from a GIS in an ArcGIS notebook, you would implement the code option d) Call the list method on the GIS object.
Step-by-step explanation:
To view contents from a GIS in an ArcGIS notebook, you would implement the code option d) Call the list method on the GIS object. This will return a list of all the contents in the GIS. Here's an example:
gis = GIS('url', 'username', 'password')
contents = gis.content.list()
for item in contents:
print(item)