cara mengubah img menjadi python abu -abu

from PIL import Image
img = Image.open('image.png').convert('L')
img.save('greyscale.png')
Shanti