In this video i will show you how to create a Google colab Notebook and then how to import an image file to it.
This is the code i used in the video:
from google.colab import files
from IPython import display
uploaded = files.upload()
display.Image("myimage.jpg",
width=1000)