Consider i create a Class Name "Application" which accepts "frame" widget
class Application(Frame):
In Constructor/Initialisation i do
def __init__(self, master=None):
When creating Instance
root = Tk()
app = Application(master=root)
i dont Understand when creating instance i am assigning instance of class Tk() to Master . then why in initialisation we are making it "None". can Some one look into this and Explain.
Thanks in Advance