+ 9
Why this code is not working in IDE & Pydroid??
import tkinter top = tkinter.Tk() C = tkinter.Canvas(top, bg = 'red', height = 25, width = 30) coord = 1, 5, 24, 21 arc = C.create_arc(coord, start = 0, extent = 150, fill = 'blue') top.mainloop()
4 Réponses
+ 8
Who will pack the "C" my friend
Just add C.pack() to your code
+ 6
I went through an article and according it you are missing C.pack() after arc line.
+ 3
Abhay thanks