On Wednesday, February 17, 2016 at 2:49:44 PM UTC-5, wrong.a...@gmail.com wrote:
> I am mostly getting positive feedback for Python.
> ...
I'm surprised no one has mentioned jupyter yet, so here goes ...
A browser-based notebook, see http://www.jupyter.org
I think this is an unparalleled way to
Is there any way to delete a widget (window) from a Text widget, and
then add it back
to the Text, without re-creating the original widget. For example, I
think I would like to do
something like the following:
##
from Tkinter import *
root =
Sigh. Of course, near the middle is supposed to be:
delete the last one from Text
widget = widgets[-1]
--
http://mail.python.org/mailman/listinfo/python-list
I now see that I can accomplish what I want using the Canvas widget,
instead of the
Text widget (I.e., I can create a window on it, delete the window, then
re add it without
recreating the underlying widget object).
As I don't want the raw contents user-editable, I guess its better to
use a Canvas