+ 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 Answers
+ 8
Who will pack the "C" my friend
Just add C.pack() to your code
+ 7
Hmm let's ask the expert
äžčâšă©Ú©ć»Ÿ sir đ€đ€apki ispe kya rai hai mere hisab se pydroid se jyada python shell acha hai but the problem is u don't have computer.. so you need to ask the expert here's the mic đ€@Ayush bhaia
+ 6
I went through an article and according it you are missing C.pack() after arc line.
+ 3
Abhay thanks