The Tk toolkit is a scripted GUI toolkit that is designed to be used from dynamic languages (initially Tcl, but also Perl and Python).

learn more… | top users | synonyms

2
votes
1answer
106 views

Evaluating longest path

Here is a program which keeps track of the longest path in a graph. I think it can be written much better. from Tkinter import * ''' This program tries to compute the longest path (largest number of ...