Solved

Given the Following Code,which Line Defines the Size of the Window

Question 9

Multiple Choice

Given the following code,which line defines the size of the window?
Given the following code,which line defines the size of the window?   A)  self.main_window = tkinter.Tk()  B)  self.canvas = tkinter.Canvas(self.main_window,width=200, height=200)  C)  self.canvas.create_rectangle(30,30, 175, 175)  D)  shape = myShape()


A) self.main_window = tkinter.Tk()
B) self.canvas = tkinter.Canvas(self.main_window,width=200, height=200)
C) self.canvas.create_rectangle(30,30, 175, 175)
D) shape = myShape()

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions