Write the statement that creates a Frame widaet and its pare
Write the statement that creates a Frame widaet and its parent must be self.main_window. Five machines will constitute a GT cell. The from-to data for the machines are shown in table. Determine the most logical sequence of machine for the data and construct the network diagram, showing where and how many pans enter and exit the system. Compute the percentage of in-sequence moves, bypassing moves and backtracking moves.
Solution
Problem 9:
Statement to create Frame widget:
#create a frame widget and it takes an argument
#self.main_window which is used to add the frame
#into main_window widget
self.frame = tkinter.Frame(self.main_window)
#call the pack method of frame widget
Self.frame.pack( )
