Python PIL Image Flip

# flip an PLT image horizontally left to right
image.transpose(Image.FLIP_LEFT_RIGHT)
Perfect Penguin