tkinter having different titles for two windows
I want to use tkinter to create an application that has two windows with different titles. Here's my code. import tkinter as tk class Demo1: def __init__(self, master): self.master = master self.frame = tk.Frame(self.master) self.button1 = tk.Button(self.frame, text = 'New Window', width = 25, co...