1from PIL import image
2
3img = image.open('C:\Users\you\path\to\your\image.jpg')
4pix = img.getpixel((100,100))
5img.putpixel((0,0),(0,0,255))
1import math #importing the math functions
2
3pi = math.pi #getting the value of pi
4
5print(pi) #printing the result