tkinter get child in frame

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
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