tkinter get child in frame

Solutions on MaxInterview for tkinter get child in frame by the best coders in the world

showing results for - "tkinter get child in frame"
Andrea
03 May 2019
1children_widgets = frame.winfo_children()
2for child_widget in children_widgets:
3	if child_widget.winfo_class() == 'Entry':
4    	print(child_widget.get())
5