tkinter canvas item configure
问题 I'm trying to make a dice object, and I want to be able to control the pip colors. I created the pips with a black fill, and I tried to change one to red using self.canvas.itemconfigure(self.pip1, fill='red') but it seems to have no effect. There is no error so I'm wondering why the change doesn't show up. Minimum working example: from tkinter import * from tkinter import ttk class Dice: #the x and y instancing variables are for the x and y coordinates of the top left corner of the rectangle