I want to be able to run tcl script from my python script. In particular, I want to run a tcl script like this .
I have some knowledge about python and about no tcl.
I tried things like:
import Tkinter r=Tkinter.Tk() r.call('source{DIS.tcl})' or r.tk.eval('source{DIS.tcl})'
Any ideas how I could access things from a tcl script? Thanks!
mcfly source share