Python identificar el modo de imagen

from PIL import Image

rgbImage = Image.open("flower.jpg")
print(rgbImage.mode)
Robert Dorrigan