The below code on running, gives the following error, Please help me resolve it
Code:
import Tkinter as tk
from PIL import ImageTk, Image
path='C:\Users\Sabyasachi\Pictures\Formal Reception.jpg'
  root = tk.Tk()
   img = ImageTk.PhotoImage(Image.open(path))
    panel = tk.Label(root, image = img)
        panel.pack(side = "bottom", fill = "both", expand = "yes")
        root.mainloop()
ERROR:'unicodeescape' codex cant decode bytes in position
 
    