from tkinter import *
import win32api
from tkinter import filedialog
from mood import Dominant
from form import Assessment
import json
ca=Assessment()
window=Toplevel()
window.withdraw()
window.title("Analysis")
When I try to change title on the window still the title appears as "tk". I saw some answers but they were related OOP in the main window I could not change the title.