I don't understand the output of "button.configure("text")". This function returns a tuple. what are the elements of the tuple?
from tkinter import *
from tkinter import ttk
root = Tk()
button = ttk.Button(root, text=("Hello"))
button.grid()
print(button.configure("text"))
root.mainloop()
output is:
('text', 'text', 'Text', '', 'Hello')