How to load image in colab?

I would like to know if it is possible to add image in colab, my code is the following but I coudnt add the image:

p = figure(plot_width = 500, plot_height=500)

p.x_range = Range1d(0,0.8)

p.y_range = Range1d(0,0.8)

p.image_url(url=[’/content/KKM.png’], x=0, y=1, w=0.8, h=0.8)

show(p)

You will need to figure a real http URL for the image, any time notebook server is remote.