I\'m looking for the same effect as alert() in JavaScript.
alert()
I wrote a simple web-based interpreter this afternoon using Twisted.web. You basically submit
Use
from tkinter.messagebox import * Message([master], title="[title]", message="[message]")
The master window has to be created before. This is for Python 3. This is not fot wxPython, but for tkinter.