मान लीजिए कि किसी विशेष एप्लिकेशन के लिए, हम उसके नाम से बटन मान प्राप्त करना चाहते हैं। ऐसे मामलों में, हम .cget() . का उपयोग कर सकते हैं समारोह। प्रत्येक टिंकर विजेट .cget() . का समर्थन करता है फ़ंक्शन, क्योंकि इसका उपयोग विजेट कॉन्फ़िगरेशन जैसे मान या नाम को पुनः प्राप्त करने के लिए किया जा सकता है।
उदाहरण
इस विशेष उदाहरण में, हम एक बटन बनाएंगे और फिर बटन टेक्स्ट को एक वेरिएबल "mytext" में स्टोर करेंगे। वेरिएबल का उपयोग करके, हम टेक्स्ट को लेबल विजेट में प्रदर्शित करेंगे।
#Import tkinter library from tkinter import * from tkinter import ttk #Create an instance of tkinter frame or window win= Tk() #Set the geometry of tkinter frame win.geometry("750x250") #Create a button button= ttk.Button(win, text="My Button") button.pack() #Get the text of Button mytext= button.cget('text') #Create a label to print the button information Label(win, text=mytext, font= ('Helvetica 20 bold')).pack(pady=20) win.mainloop()
आउटपुट
उपरोक्त कोड को निष्पादित करने पर एक बटन के साथ एक विंडो और बटन टेक्स्ट दिखाने वाला एक टेक्स्ट लेबल प्रदर्शित होगा।