I've started using easygui
instead of tkinter
because its easy, but I've run into a little problem the following code when used in jupyter notebook launches a window but it will pop up behind the browser.
import easygui
easygui.filesavebox(default="hello.txt")
Is there any possible way to lift the windows to the top of all windows like in tkinter
?