Question: 2. Implement a GUI widget class RoundRobin that consist of an Entry widget and a Button widget labeled Next. The class constructor should take a

2. Implement a GUI widget class RoundRobin that consist of an Entry widget and a Button widget labeled "Next". The class constructor should take a non-empty list as an input argument, for example: >>> Ist = ['Zoe', 'Yannick', 'Xena', 'Wendy', 'Vince'] >>> RoundRobin(st) mainloon() The Entry widget should display nothing at startup: tk Next When the "Next" button is clicked, the first item in the list should be displayed: tk Zoe Next Clicking the "Next" button again should result in the next list item being displayed: tk Yannick Next
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
