Question: python2.7 1. Implement a simple window that will be used to display electronic signage. The window should be implemented as a class named Sign. I
python2.7
1. Implement a simple window that will be used to display electronic signage. The window should be implemented as a class named Sign. I have given you some code to get started. The window should look exactly follows. The text in the window needs to be displayed
*exactly* as shown for full credit.
from tkinter import Label,Tk
class Sign(Tk):
def __init__(self,parent=None):
Tk.__init__(self, parent)
self.make_widgets()
def make_widgets(self):
pass
Sign().mainloop()
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
