Gambar Python ke Grayscale

from PIL import Image
img = Image.open("image.jpg")
img.convert("L").save("result.jpg")
Leo