Lets say this is my code:
from tkinter import *
window = Tk()
entry = Entry(window)
entry.pack()
window.mainloop()
When user types polish letters he then gets weird symbols such a ¹œæ. How to fix that? When I use e.insert(END, "ąść")
I see normal polish letters.